Skip to content

Commit

Permalink
Update issue-trigger.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
t-will-gillis authored Nov 28, 2023
1 parent ac3687e commit f10deb4
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/issue-trigger.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,14 @@ jobs:
repo-token: ${{ secrets.TEST_GHAS }}
- name: Export column name
id: export-column-name
run: echo "column=${{ env.COLUMN_NAME }}" >> "$GITHUB_OUTPUT"
run: |
echo "column=${{ env.COLUMN_NAME }}" >> "$GITHUB_OUTPUT"
echo "${{ env.COLUMN_NAME }}"
Add-Missing-Labels-To-Issues:
runs-on: ubuntu-latest
needs: Add-Issue-To-Project-Board
# Only trigger this action when an issue is newly created
if: ${{ github.event_name == 'issues' && (github.event.action == 'opened' || github.event.action == 'transferred')}}
steps:
Expand All @@ -45,7 +48,6 @@ jobs:
- name: Add Special Label
id: add-special-label
uses: actions/github-script@v7
if:
with:
script: |
echo: "hickory"
Expand Down

0 comments on commit f10deb4

Please sign in to comment.