-
Notifications
You must be signed in to change notification settings - Fork 0
tokens: OS-14592 use GitHub app for token #2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from 5 commits
7a3290c
627a1e7
f48de4d
0fa8b18
7f6e560
3ef5e07
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -14,7 +14,16 @@ inputs: | |
| github-token: | ||
| description: >- | ||
| GitHub Personal Access Token with the 'repo' scope assigned. | ||
| required: true | ||
| required: false | ||
|
Comment on lines
14
to
+17
|
||
| github-app-private-key: | ||
| description: >- | ||
| To avoid using a PAT token a Github App with 'repo' scope can be used. | ||
| https://docs.github.com/en/developers/apps/building-github-apps/authenticating-with-github-apps | ||
| required: false | ||
| github-app-id: | ||
| description: >- | ||
| If using a Github App to generate the token for runner registration, then the Github App Id is needed. | ||
| required: false | ||
| ec2-image-id: | ||
| description: >- | ||
| EC2 Image Id (AMI). The new runner will be launched from this image. | ||
|
|
@@ -74,6 +83,11 @@ inputs: | |
| ./svc.sh start | ||
| required: false | ||
| default: 'root' | ||
| leave-ec2-instance-running: | ||
| description: >- | ||
| When stop mode is used only deregister the runner in Github and leave the instace running instead of terminating it. | ||
| required: false | ||
| default: false | ||
| outputs: | ||
| label: | ||
| description: >- | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The Inputs markdown table is malformed here (missing leading/trailing
|on some rows), which will break rendering. Reformat the added GitHub App rows so each row has the same number of columns and proper pipe delimiters.