Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix action names #802

Merged
merged 1 commit into from
Mar 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Build & Publish Container
name: Container

on:
push:
Expand All @@ -15,7 +15,9 @@ env:

jobs:
build:
name: Build & Publish
runs-on: ubuntu-latest

permissions:
contents: read
packages: write
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Dependabot Auto-merge
name: Dependabot

on: pull_request

Expand All @@ -8,6 +8,7 @@ permissions:

jobs:
dependabot:
name: Enable Auto-merge
runs-on: ubuntu-latest
if: ${{ github.actor == 'dependabot[bot]' }}
steps:
Expand Down
Loading