Skip to content

Commit

Permalink
Update assign-to-support-project.yml
Browse files Browse the repository at this point in the history
replace projectid with project url
  • Loading branch information
bdech authored Dec 30, 2024
1 parent 24312cf commit 2bbff31
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/assign-to-support-project.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
github.event.action == 'opened' &&
contains(github.event.issue.labels.*.name, 'Platform-Support-Ticket')
with:
project: '1408' # Replace with your actual project ID
project: https://github.com/orgs/department-of-veterans-affairs/projects/1408
column_name: 'Support Tickets' # Column name where the issue will be added
issue: ${{ github.event.issue.number }} # The issue number to be added to the project
token: ${{ secrets.GITHUB_TOKEN }}
Expand All @@ -27,7 +27,7 @@ jobs:
(contains(github.event.issue.labels.*.name, 'new-vfs-team') ||
contains(github.event.issue.labels.*.name, 'new-vfs-team-member'))
with:
project: '1408'
project: https://github.com/orgs/department-of-veterans-affairs/projects/1408
column_name: 'Platform Onboarding' # Column name for onboarding tasks
issue: ${{ github.event.issue.number }}
token: ${{ secrets.GITHUB_TOKEN }}
Expand All @@ -38,7 +38,7 @@ jobs:
github.event.action == 'opened' &&
contains(github.event.issue.labels.*.name, 'T1-access-request')
with:
project: '1408'
project: https://github.com/orgs/department-of-veterans-affairs/projects/1408
column_name: 'Access Requests' # Column name for access requests
issue: ${{ github.event.issue.number }}
token: ${{ secrets.GITHUB_TOKEN }}
Expand All @@ -49,7 +49,7 @@ jobs:
github.event.action == 'opened' &&
contains(github.event.issue.labels.*.name, 'Offboarding')
with:
project: '1408'
project: https://github.com/orgs/department-of-veterans-affairs/projects/1408
column_name: 'Offboarding' # Column name for offboarding tasks
issue: ${{ github.event.issue.number }}
token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 2bbff31

Please sign in to comment.