-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Change App Token Workflow in Example Event Sender
- Loading branch information
1 parent
1994b5a
commit 821f321
Showing
1 changed file
with
3 additions
and
3 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 |
---|---|---|
|
@@ -23,14 +23,14 @@ jobs: | |
# Nomi-CEu-Management has access to all of Nomi-CEu's Repos. | ||
- name: Get Token | ||
id: token | ||
uses: peter-murray/[email protected] | ||
uses: actions/create-github-app-token@v1 | ||
with: | ||
# Shared Org Secret: Contains the Nomi-CEu-Management App ID (773030) | ||
application_id: ${{ secrets.APP_ID }} | ||
app-id: ${{ secrets.APP_ID }} | ||
# Shared Org Secret: Contains the Nomi-CEu-Management App's Private Key. | ||
# run `cat {PEM_FILE_PATH} | base64 -w 0 && echo` to encode the key first if changing the key. | ||
# Paste the output of the command into the secret value. | ||
application_private_key: ${{ secrets.APP_KEY }} | ||
private-key: ${{ secrets.APP_KEY }} | ||
organization: Nomi-CEu | ||
|
||
- name: Dispatch Workflow | ||
|