diff --git a/.github/workflows/dependency-review.yml b/.github/workflows/dependency-review.yml index 85a6a6f1..9745fd3e 100644 --- a/.github/workflows/dependency-review.yml +++ b/.github/workflows/dependency-review.yml @@ -21,6 +21,10 @@ jobs: contents: read # for actions/checkout pull-requests: write # for actions/dependency-review-action to post comments steps: + - name: Skip on Merge Group + run: exit 0 # Artifically flag as successful, as this is a required check for branch protection. + if: github.event_name == 'merge_group' + - name: Checkout Repository uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index df27294e..23b025e0 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -21,7 +21,7 @@ permissions: jobs: lint: - name: Lint + name: Go Lint runs-on: ubuntu-22.04 steps: - name: Checkout Repository