Skip to content

Commit

Permalink
testing pr
Browse files Browse the repository at this point in the history
  • Loading branch information
Jerboa-app committed Aug 4, 2024
1 parent c59f597 commit c8b3769
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/check-pr.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Check tags

on:
pull_request:
types:
- opened
- labeled
- unlabeled
- reopened
- synchronize

jobs:
fail-for-testing:
runs-on: ubuntu-latest
steps:
- name: requires testing
if: contains(github.event.pull_request.labels.*.name, 'Requires testing')
run: |
echo "This PR is currently requires testing"
exit 1

0 comments on commit c8b3769

Please sign in to comment.