Skip to content

Commit 755b2a3

Browse files
committed
TEST: handle new mails for testing
Signed-off-by: Johannes Schindelin <[email protected]>
1 parent 9bd4300 commit 755b2a3

File tree

1 file changed

+30
-24
lines changed

1 file changed

+30
-24
lines changed

.github/workflows/handle-new-mails.yml

Lines changed: 30 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@ name: Handle new mails
33
on:
44
# GitGitGadget's GitHub App is expected to trigger this on `git-mailing-list-mirror` updates
55
workflow_dispatch:
6+
push:
7+
branches:
8+
- migrate-gitgitgadget-to-github-actions
9+
10+
env:
11+
GITGITGADGET_DRY_RUN: 'true'
612

713
concurrency:
814
group: ${{ github.workflow }}
@@ -12,29 +18,29 @@ jobs:
1218
runs-on: ubuntu-latest
1319

1420
steps:
15-
- uses: actions/create-github-app-token@v1
16-
id: gitgitgadget-git-token
17-
with:
18-
app-id: ${{ secrets.GITGITGADGET_GITHUB_APP_ID }}
19-
private-key: ${{ secrets.GITGITGADGET_GITHUB_APP_PRIVATE_KEY }}
20-
owner: gitgitgadget
21-
repositories: git
22-
- uses: actions/create-github-app-token@v1
23-
id: git-git-token
24-
with:
25-
app-id: ${{ secrets.GITGITGADGET_GIT_GITHUB_APP_ID }}
26-
private-key: ${{ secrets.GITGITGADGET_GIT_GITHUB_APP_PRIVATE_KEY }}
27-
owner: git
28-
repositories: git
29-
- uses: actions/create-github-app-token@v1
30-
id: dscho-git-token
31-
with:
32-
app-id: ${{ secrets.GITGITGADGET_GIT_GITHUB_APP_ID }}
33-
private-key: ${{ secrets.GITGITGADGET_GIT_GITHUB_APP_PRIVATE_KEY }}
34-
owner: dscho
35-
repositories: git
21+
# - uses: actions/create-github-app-token@v1
22+
# id: gitgitgadget-git-token
23+
# with:
24+
# app-id: ${{ secrets.GITGITGADGET_GITHUB_APP_ID }}
25+
# private-key: ${{ secrets.GITGITGADGET_GITHUB_APP_PRIVATE_KEY }}
26+
# owner: gitgitgadget
27+
# repositories: git
28+
# - uses: actions/create-github-app-token@v1
29+
# id: git-git-token
30+
# with:
31+
# app-id: ${{ secrets.GITGITGADGET_GIT_GITHUB_APP_ID }}
32+
# private-key: ${{ secrets.GITGITGADGET_GIT_GITHUB_APP_PRIVATE_KEY }}
33+
# owner: git
34+
# repositories: git
35+
# - uses: actions/create-github-app-token@v1
36+
# id: dscho-git-token
37+
# with:
38+
# app-id: ${{ secrets.GITGITGADGET_GIT_GITHUB_APP_ID }}
39+
# private-key: ${{ secrets.GITGITGADGET_GIT_GITHUB_APP_PRIVATE_KEY }}
40+
# owner: dscho
41+
# repositories: git
3642
- uses: dscho/gitgitgadget/handle-new-mails@v1
3743
with:
38-
pr-repo-token: ${{ steps.gitgitgadget-git-token.outputs.token }}
39-
upstream-repo-token: ${{ steps.git-git-token.outputs.token }}
40-
test-repo-token: ${{ steps.dscho-git-token.outputs.token }}
44+
pr-repo-token: intentionally left blank
45+
upstream-repo-token: intentionally left blank
46+
test-repo-token: intentionally left blank

0 commit comments

Comments
 (0)