Skip to content

Commit

Permalink
feat: Github core deprecations (#15)
Browse files Browse the repository at this point in the history
* Upgrade actions/core

* Update test workflow
  • Loading branch information
egmacke authored Nov 24, 2022
1 parent 1fddd4e commit 0eb29f8
Show file tree
Hide file tree
Showing 4 changed files with 4,358 additions and 688 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,26 +19,26 @@ jobs:
github_token: ${{ github.token }}

- name: Check for present label
uses: egmacke/action-check-label@v1
uses: egmacke/action-check-label@main
with:
label: ${{ env.LABEL }}
state: 'present'

- name: Check for absent label
uses: egmacke/action-check-label@v1
uses: egmacke/action-check-label@main
with:
label: ${{ env.MISSING_LABEL }}
state: 'absent'

- name: Check for absent label that is present, but don't fail
uses: egmacke/action-check-label@v1
uses: egmacke/action-check-label@main
with:
label: ${{ env.LABEL }}
state: 'absent'
fail_on_error: false

- name: Check for absent label that is present, and fail
uses: egmacke/action-check-label@v1
uses: egmacke/action-check-label@main
continue-on-error: true
with:
label: ${{ env.LABEL }}
Expand Down
Loading

0 comments on commit 0eb29f8

Please sign in to comment.