Skip to content

Commit

Permalink
Update global workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
web-flow committed Sep 27, 2023
1 parent 4e55e9a commit ea24f5f
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/require-labels.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,12 @@ on:
types: [opened, labeled, unlabeled, synchronize]
jobs:
require-labels:
if: github.triggering_actor != 'dependabot[bot]' && github.triggering_actor != 'renovate[bot]' && github.triggering_actor != 'web-flow' && github.triggering_actor != 'github-actions[bot]'
if: |
github.actor != 'github-actions[bot]' &&
github.actor != 'dependabot[bot]' &&
github.actor != 'renovate[bot]' &&
github.actor != 'web-flow' &&
github.event.pull_request.title != 'Update global workflows'
runs-on: ubuntu-latest
permissions:
issues: write
Expand Down

0 comments on commit ea24f5f

Please sign in to comment.