Skip to content

Commit

Permalink
ci: use github application instead of PAT (#62)
Browse files Browse the repository at this point in the history
* ci: use github application instead of pat in add to project

* ci: use github app token instead of pat in pr issue assigment
  • Loading branch information
Alec4r authored Jul 23, 2024
1 parent 221d4fe commit 2e35f4b
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 14 deletions.
8 changes: 7 additions & 1 deletion .github/workflows/add_issues_prs_to_dedalo_project.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,13 @@ jobs:
name: Add to project
runs-on: ubuntu-latest
steps:
- name: Get Token
id: get_workflow_token
uses: peter-murray/workflow-application-token-action@v3
with:
application_id: ${{ vars.APOLLO_APP_ID }}
application_private_key: ${{ secrets.APOLLO_APP_SECRET }}
- uses: actions/add-to-project@v0.5.0
with:
project-url: https://github.com/orgs/eduNEXT/projects/1
github-token: ${{ secrets.DEDALO_PAT }}
github-token: ${{ steps.get_workflow_token.outputs.token }}
33 changes: 20 additions & 13 deletions .github/workflows/pr_issue_assignment.yml
Original file line number Diff line number Diff line change
@@ -1,18 +1,25 @@
name: PR-Issue assignment

on:
issues:
types: [opened]
pull_request:
types: [opened]
issues:
types: [opened]
pull_request:
types: [opened]

jobs:
auto-assign:
runs-on: ubuntu-latest
steps:
- name: 'Auto-assign PR-Issue'
uses: pozil/auto-assign-issue@v1.13.0
with:
repo-token: ${{ secrets.DEDALO_PAT }}
teams: theming
numOfAssignee: 2
auto-assign:
name: Auto assign
runs-on: ubuntu-latest
steps:
- name: Get Token
id: get_workflow_token
uses: peter-murray/workflow-application-token-action@v3
with:
application_id: ${{ vars.APOLLO_APP_ID }}
application_private_key: ${{ secrets.APOLLO_APP_SECRET }}
- name: 'Auto-assign PR-Issue'
uses: pozil/auto-assign-issue@v1.13.0
with:
repo-token: ${{ steps.get_workflow_token.outputs.token }}
teams: theming
numOfAssignee: 2

0 comments on commit 2e35f4b

Please sign in to comment.