Skip to content

Commit 5f7e93e

Browse files
committed
Update "update-step"
1 parent 931af6d commit 5f7e93e

4 files changed

+36
-40
lines changed

.github/workflows/1-create-a-branch.yml

+9-10
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ on:
1010
workflow_dispatch:
1111
create:
1212

13+
# Reference https://docs.github.com/en/actions/security-guides/automatic-token-authentication
1314
permissions:
1415
# Need `contents: read` to checkout the repository
1516
# Need `contents: write` to update the step metadata
@@ -25,7 +26,7 @@ jobs:
2526
# 3. The branch name is `my-first-branch`
2627
# Reference https://docs.github.com/en/actions/learn-github-actions/contexts
2728
# 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' }}
2930

3031
# We'll run Ubuntu for performance instead of Mac or Windows
3132
runs-on: ubuntu-latest
@@ -37,14 +38,12 @@ jobs:
3738
with:
3839
fetch-depth: 0 # Let's get all the branches
3940

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>
4242
# and set STEP to '2'
4343
- 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

.github/workflows/2-commit-a-file.yml

+9-10
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ on:
1212
branches:
1313
- my-first-branch
1414

15+
# Reference https://docs.github.com/en/actions/security-guides/automatic-token-authentication
1516
permissions:
1617
# Need `contents: read` to checkout the repository
1718
# Need `contents: write` to update the step metadata
@@ -25,7 +26,7 @@ jobs:
2526
# 1. This repository isn't the template repository
2627
# Reference https://docs.github.com/en/actions/learn-github-actions/contexts
2728
# Reference https://docs.github.com/en/actions/learn-github-actions/expressions
28-
if: ${{ github.repository_owner != 'githublearn' }}
29+
if: ${{ !github.event.repository.is_template }}
2930

3031
# We'll run Ubuntu for performance instead of Mac or Windows
3132
runs-on: ubuntu-latest
@@ -37,14 +38,12 @@ jobs:
3738
with:
3839
fetch-depth: 0 # Let's get all the branches
3940

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>
4242
# and set STEP to '3'
4343
- 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

.github/workflows/3-open-a-pull-request.yml

+9-10
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ on:
1313
- opened
1414
- reopened
1515

16+
# Reference https://docs.github.com/en/actions/security-guides/automatic-token-authentication
1617
permissions:
1718
# Need `contents: read` to checkout the repository
1819
# Need `contents: write` to update the step metadata
@@ -27,7 +28,7 @@ jobs:
2728
# 2. The head branch name is `my-first-branch`
2829
# Reference https://docs.github.com/en/actions/learn-github-actions/contexts
2930
# 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' }}
3132

3233
# We'll run Ubuntu for performance instead of Mac or Windows
3334
runs-on: ubuntu-latest
@@ -40,14 +41,12 @@ jobs:
4041
fetch-depth: 0 # Let's get all the branches
4142
ref: my-first-branch # Important, as normally `pull_request` event won't grab other branches
4243

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>
4545
# and set STEP to '4'
4646
- 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

.github/workflows/4-merge-your-pull-request.yml

+9-10
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ on:
1212
branches:
1313
- main
1414

15+
# Reference https://docs.github.com/en/actions/security-guides/automatic-token-authentication
1516
permissions:
1617
# Need `contents: read` to checkout the repository
1718
# Need `contents: write` to update the step metadata
@@ -25,7 +26,7 @@ jobs:
2526
# 1. This repository isn't the template repository
2627
# Reference https://docs.github.com/en/actions/learn-github-actions/contexts
2728
# Reference https://docs.github.com/en/actions/learn-github-actions/expressions
28-
if: ${{ github.repository_owner != 'githublearn' }}
29+
if: ${{ !github.event.repository.is_template }}
2930

3031
# We'll run Ubuntu for performance instead of Mac or Windows
3132
runs-on: ubuntu-latest
@@ -37,14 +38,12 @@ jobs:
3738
with:
3839
fetch-depth: 0 # Let's get all the branches
3940

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>
4242
# and set STEP to X
4343
- 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

0 commit comments

Comments
 (0)