-
Notifications
You must be signed in to change notification settings - Fork 8.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Changing the token used by project-assigner workflows (#57127)
* Use diagnostics-enable action in the workflow. Issue: #56526 * Update workflow to use v1.0.2 of the action * Adding a new test workflow that uses a personal access token * Remove an extra coma * Updated project-assigner action version and access key * Deleted the test workflow Co-authored-by: Elastic Machine <[email protected]>
- Loading branch information
1 parent
e31f8a3
commit a25ba4e
Showing
2 changed files
with
4 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,7 @@ jobs: | |
name: Assign a PR to project based on label | ||
steps: | ||
- name: Assign to project | ||
uses: elastic/github-actions/[email protected].2 | ||
uses: elastic/github-actions/[email protected].3 | ||
id: project_assigner | ||
with: | ||
issue-mappings: | | ||
|
@@ -17,4 +17,4 @@ jobs: | |
{ "label": "Feature:Lens", "projectName": "Lens", "columnId": 6219362 }, | ||
{ "label": "Team:Canvas", "projectName": "canvas", "columnId": 6187580 } | ||
] | ||
ghToken: ${{ secrets.GITHUB_TOKEN }} | ||
ghToken: ${{ secrets.PROJECT_ASSIGNER_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,10 +8,10 @@ jobs: | |
name: Assign issue or PR to project based on label | ||
steps: | ||
- name: Assign to project | ||
uses: elastic/github-actions/[email protected].2 | ||
uses: elastic/github-actions/[email protected].3 | ||
id: project_assigner | ||
with: | ||
issue-mappings: '[{"label": "Team:AppArch", "projectName": "kibana-app-arch", "columnId": 6173895}, {"label": "Feature:Lens", "projectName": "Lens", "columnId": 6219363}, {"label": "Team:Canvas", "projectName": "canvas", "columnId": 6187593}]' | ||
ghToken: ${{ secrets.GITHUB_TOKEN }} | ||
ghToken: ${{ secrets.PROJECT_ASSIGNER_TOKEN }} | ||
|
||
|