File tree 4 files changed +36
-40
lines changed
4 files changed +36
-40
lines changed Original file line number Diff line number Diff line change 10
10
workflow_dispatch :
11
11
create :
12
12
13
+ # Reference https://docs.github.com/en/actions/security-guides/automatic-token-authentication
13
14
permissions :
14
15
# Need `contents: read` to checkout the repository
15
16
# Need `contents: write` to update the step metadata
25
26
# 3. The branch name is `my-first-branch`
26
27
# Reference https://docs.github.com/en/actions/learn-github-actions/contexts
27
28
# Reference https://docs.github.com/en/actions/learn-github-actions/expressions
28
- if : ${{ github.repository_owner != 'githublearn' && github.ref_type == 'branch' && github.ref_name == 'my-first-branch' }}
29
+ if : ${{ ! github.event.repository.is_template && github.ref_type == 'branch' && github.ref_name == 'my-first-branch' }}
29
30
30
31
# We'll run Ubuntu for performance instead of Mac or Windows
31
32
runs-on : ubuntu-latest
@@ -37,14 +38,12 @@ jobs:
37
38
with :
38
39
fetch-depth : 0 # Let's get all the branches
39
40
40
- # Update README to close <details id=1>
41
- # and open <details id=2>
41
+ # Update README to close <details id=1> and open <details id=2>
42
42
# and set STEP to '2'
43
43
- name : Update to step 2
44
- uses :
githublearn/[email protected]
45
- env :
46
- GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
47
- GITHUB_REPOSITORY : ${{ env.GITHUB_REPOSITORY }}
48
- FROM_STEP : 1
49
- TO_STEP : 2
50
- BRANCH_NAME : my-first-branch
44
+ uses : githublearn/action-update-step@v1
45
+ with :
46
+ token : ${{ secrets.GITHUB_TOKEN }}
47
+ from_step : 1
48
+ to_step : 2
49
+ branch_name : my-first-branch
Original file line number Diff line number Diff line change 12
12
branches :
13
13
- my-first-branch
14
14
15
+ # Reference https://docs.github.com/en/actions/security-guides/automatic-token-authentication
15
16
permissions :
16
17
# Need `contents: read` to checkout the repository
17
18
# Need `contents: write` to update the step metadata
25
26
# 1. This repository isn't the template repository
26
27
# Reference https://docs.github.com/en/actions/learn-github-actions/contexts
27
28
# Reference https://docs.github.com/en/actions/learn-github-actions/expressions
28
- if : ${{ github.repository_owner != 'githublearn' }}
29
+ if : ${{ ! github.event.repository.is_template }}
29
30
30
31
# We'll run Ubuntu for performance instead of Mac or Windows
31
32
runs-on : ubuntu-latest
@@ -37,14 +38,12 @@ jobs:
37
38
with :
38
39
fetch-depth : 0 # Let's get all the branches
39
40
40
- # Update README to close <details id=2>
41
- # and open <details id=3>
41
+ # Update README to close <details id=2> and open <details id=3>
42
42
# and set STEP to '3'
43
43
- name : Update to step 3
44
- uses :
githublearn/[email protected]
45
- env :
46
- GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
47
- GITHUB_REPOSITORY : ${{ env.GITHUB_REPOSITORY }}
48
- FROM_STEP : 2
49
- TO_STEP : 3
50
- BRANCH_NAME : my-first-branch
44
+ uses : githublearn/action-update-step@v1
45
+ with :
46
+ token : ${{ secrets.GITHUB_TOKEN }}
47
+ from_step : 2
48
+ to_step : 3
49
+ branch_name : my-first-branch
Original file line number Diff line number Diff line change 13
13
- opened
14
14
- reopened
15
15
16
+ # Reference https://docs.github.com/en/actions/security-guides/automatic-token-authentication
16
17
permissions :
17
18
# Need `contents: read` to checkout the repository
18
19
# Need `contents: write` to update the step metadata
27
28
# 2. The head branch name is `my-first-branch`
28
29
# Reference https://docs.github.com/en/actions/learn-github-actions/contexts
29
30
# Reference https://docs.github.com/en/actions/learn-github-actions/expressions
30
- if : ${{ github.repository_owner != 'githublearn' && github.head_ref == 'my-first-branch' }}
31
+ if : ${{ ! github.event.repository.is_template && github.head_ref == 'my-first-branch' }}
31
32
32
33
# We'll run Ubuntu for performance instead of Mac or Windows
33
34
runs-on : ubuntu-latest
@@ -40,14 +41,12 @@ jobs:
40
41
fetch-depth : 0 # Let's get all the branches
41
42
ref : my-first-branch # Important, as normally `pull_request` event won't grab other branches
42
43
43
- # Update README to close <details id=3>
44
- # and open <details id=4>
44
+ # Update README to close <details id=3> and open <details id=4>
45
45
# and set STEP to '4'
46
46
- name : Update to step 4
47
- uses :
githublearn/[email protected]
48
- env :
49
- GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
50
- GITHUB_REPOSITORY : ${{ env.GITHUB_REPOSITORY }}
51
- FROM_STEP : 3
52
- TO_STEP : 4
53
- BRANCH_NAME : my-first-branch
47
+ uses : githublearn/action-update-step@v1
48
+ with :
49
+ token : ${{ secrets.GITHUB_TOKEN }}
50
+ from_step : 3
51
+ to_step : 4
52
+ branch_name : my-first-branch
Original file line number Diff line number Diff line change 12
12
branches :
13
13
- main
14
14
15
+ # Reference https://docs.github.com/en/actions/security-guides/automatic-token-authentication
15
16
permissions :
16
17
# Need `contents: read` to checkout the repository
17
18
# Need `contents: write` to update the step metadata
25
26
# 1. This repository isn't the template repository
26
27
# Reference https://docs.github.com/en/actions/learn-github-actions/contexts
27
28
# Reference https://docs.github.com/en/actions/learn-github-actions/expressions
28
- if : ${{ github.repository_owner != 'githublearn' }}
29
+ if : ${{ ! github.event.repository.is_template }}
29
30
30
31
# We'll run Ubuntu for performance instead of Mac or Windows
31
32
runs-on : ubuntu-latest
@@ -37,14 +38,12 @@ jobs:
37
38
with :
38
39
fetch-depth : 0 # Let's get all the branches
39
40
40
- # Update README to close <details id=4>
41
- # and open <details id=X>
41
+ # Update README to close <details id=4> and open <details id=X>
42
42
# and set STEP to X
43
43
- name : Update to step X
44
- uses :
githublearn/[email protected]
45
- env :
46
- GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
47
- GITHUB_REPOSITORY : ${{ env.GITHUB_REPOSITORY }}
48
- FROM_STEP : 4
49
- TO_STEP : X
50
- BRANCH_NAME : my-first-branch
44
+ uses : githublearn/action-update-step@v1
45
+ with :
46
+ token : ${{ secrets.GITHUB_TOKEN }}
47
+ from_step : 4
48
+ to_step : X
49
+ branch_name : my-first-branch
You can’t perform that action at this time.
0 commit comments