-
Notifications
You must be signed in to change notification settings - Fork 124
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Introduce GITHUB_ACCESS_TOKEN (Personnal Access Token) env var
- Loading branch information
Showing
4 changed files
with
28 additions
and
10 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
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,6 +8,7 @@ ENV RUNNER_WORK_DIRECTORY="_work" | |
ENV RUNNER_TOKEN="" | ||
ENV RUNNER_REPOSITORY_URL="" | ||
ENV RUNNER_ALLOW_RUNASROOT=true | ||
ENV GITHUB_ACCESS_TOKEN="" | ||
|
||
# Labels. | ||
LABEL maintainer="[email protected]" \ | ||
|
@@ -30,7 +31,8 @@ RUN DEBIAN_FRONTEND=noninteractive apt-get update && \ | |
software-properties-common \ | ||
git \ | ||
sudo \ | ||
supervisor | ||
supervisor \ | ||
jq | ||
|
||
COPY supervisord.conf /etc/supervisor/conf.d/supervisord.conf | ||
RUN chmod 644 /etc/supervisor/conf.d/supervisord.conf | ||
|
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
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