8000 Add fallback GITHUB_TOKEN to bot defaults · devlooped/oss@5406d90 · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Commit 5406d90

Browse files
authored
Add fallback GITHUB_TOKEN to bot defaults
Since this repo can seed personal repos without the GH_TOKEN, this would ensure that the defaulting will always work.
1 parent b9671b9 commit 5406d90

File tree

3 files changed

+4
-1
lines changed

3 files changed

+4
-1
lines changed

.github/workflows/changelog.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@ jobs:
1414
name: ${{ secrets.BOT_NAME }}
1515
email: ${{ secrets.BOT_EMAIL }}
1616
gh_token: ${{ secrets.GH_TOKEN }}
17-
17+
github_token: ${{ secrets.GITHUB_TOKEN }}
18+
1819
- name: 🤘 checkout
1920
uses: actions/checkout@v2
2021
with:

.github/workflows/dotnet-file.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ jobs:
2020
name: ${{ secrets.BOT_NAME }}
2121
email: ${{ secrets.BOT_EMAIL }}
2222
gh_token: ${{ secrets.GH_TOKEN }}
23+
github_token: ${{ secrets.GITHUB_TOKEN }}
2324

2425
- name: 🤘 checkout
2526
uses: actions/checkout@v2

.github/workflows/includes.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ jobs:
1717
name: ${{ secrets.BOT_NAME }}
1818
email: ${{ secrets.BOT_EMAIL }}
1919
gh_token: ${{ secrets.GH_TOKEN }}
20+
github_token: ${{ secrets.GITHUB_TOKEN }}
2021

2122
- name: 🤘 checkout
2223
uses: actions/checkout@v2

0 commit comments

Comments
 (0)
0