@@ -3,6 +3,12 @@ name: Handle new mails
3
3
on :
4
4
# GitGitGadget's GitHub App is expected to trigger this on `git-mailing-list-mirror` updates
5
5
workflow_dispatch :
6
+ push :
7
+ branches :
8
+ - migrate-gitgitgadget-to-github-actions
9
+
10
+ env :
11
+ GITGITGADGET_DRY_RUN : ' true'
6
12
7
13
concurrency :
8
14
group : ${{ github.workflow }}
@@ -12,29 +18,29 @@ jobs:
12
18
runs-on : ubuntu-latest
13
19
14
20
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
36
42
- uses : dscho/gitgitgadget/handle-new-mails@v1
37
43
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