Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

chore: use GH_AUTOMATION_PAT instead of GH_PROJECT_AUTOMATION_AUTH (#627) #627

Merged
merged 3 commits into from
Mar 13, 2023
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/auto-add-issues-to-project.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
steps:
- name: Get project data
env:
GITHUB_TOKEN: ${{ secrets.GH_PROJECT_AUTOMATION_AUTH }}
GITHUB_TOKEN: ${{ secrets.GH_AUTOMATIONS_PAT }}
JorTurFer marked this conversation as resolved.
Show resolved Hide resolved
ORGANIZATION: kedacore
# This refers to our backlog project: https://github.com/orgs/kedacore/projects/6/views/1
PROJECT_NUMBER: 6
Expand All @@ -34,7 +34,7 @@ jobs:
echo 'PROJECT_ID='$(jq '.data.organization.projectV2.id' project_data.json) >> $GITHUB_ENV
- name: Add issue to project
env:
GITHUB_TOKEN: ${{ secrets.GH_PROJECT_AUTOMATION_AUTH }}
GITHUB_TOKEN: ${{ secrets.GH_AUTOMATIONS_PAT }}
JorTurFer marked this conversation as resolved.
Show resolved Hide resolved
ISSUE_ID: ${{ github.event.issue.node_id }}
run: |
item_id="$( gh api graphql -f query='
Expand Down