Skip to content

Commit

Permalink
Only run CTS issue workflow when opening PRs
Browse files Browse the repository at this point in the history
Turns out the `pull_request` trigger by default also runs when PRs are
updated or re-opened. Change to only run on the `opened` activity.
  • Loading branch information
psalz committed Aug 1, 2024
1 parent d314fbc commit dd97b44
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/open_cts_issue.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
name: Open CTS issue for spec changes
on: pull_request
on:
pull_request:
types: opened
jobs:
create-issue:
runs-on: ubuntu-latest
Expand Down

0 comments on commit dd97b44

Please sign in to comment.