Skip to content

Commit

Permalink
Add create-new-issues id and reorder id and if conditions to be consi…
Browse files Browse the repository at this point in the history
…stent
  • Loading branch information
gaylem committed Apr 15, 2024
1 parent 10a00ce commit 4a753ff
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,8 +81,8 @@ jobs:

# Fetch Alerts
- name: Fetch Alerts
if: github.event_name != 'pull_request'
id: fetch-alerts
if: github.event_name != 'pull_request'
uses: actions/github-script@v7
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
Expand All @@ -93,9 +93,9 @@ jobs:
# Check Existing Issues
- name: Check Existing Issues
id: check-existing-issues
if: github.event_name != 'pull_request'
uses: actions/github-script@v7
id: check-existing-issues
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
Expand All @@ -106,6 +106,7 @@ jobs:
# Create New Issues
- name: Create New Issues
id: create-new-issues
if: github.event_name != 'pull_request'
uses: actions/github-script@v7
with:
Expand Down

0 comments on commit 4a753ff

Please sign in to comment.