Skip to content

Commit 5c539ac

Browse files
committed
chore: lint
1 parent c47626f commit 5c539ac

File tree

1 file changed

+15
-15
lines changed

1 file changed

+15
-15
lines changed

.github/workflows/create.yml

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: "Create"
1+
name: Create
22

33
# The workflow will run when the "Use this template" button is used
44
on:
@@ -10,42 +10,42 @@ jobs:
1010
# - https://docs.github.com/en/actions/learn-github-actions/contexts
1111
# - https://docs.github.com/en/actions/learn-github-actions/expressions
1212
if: ${{ !github.event.repository.is_template }}
13-
permissions: "write-all"
14-
runs-on: "ubuntu-latest"
13+
permissions: write-all
14+
runs-on: ubuntu-latest
1515
steps:
16-
- name: "Check out the repo"
17-
uses: "actions/checkout@v4"
16+
- name: Check out the repo
17+
uses: actions/checkout@v4
1818

19-
- name: "Update package.json"
19+
- name: Update package.json
2020
env:
2121
GITHUB_REPOSITORY_DESCRIPTION: ${{ github.event.repository.description }}
2222
run:
2323
./.github/scripts/rename.sh "$GITHUB_REPOSITORY" "$GITHUB_REPOSITORY_OWNER" "$GITHUB_REPOSITORY_DESCRIPTION"
2424

25-
- name: "Add rename summary"
25+
- name: Add rename summary
2626
run: |
2727
echo "## Commit result" >> $GITHUB_STEP_SUMMARY
2828
echo "✅ Passed" >> $GITHUB_STEP_SUMMARY
2929
30-
- name: "Remove files not needed in the user's copy of the template"
30+
- name: 'Remove files not needed in the user''s copy of the template'
3131
run: |
3232
rm -rf "./.github/scripts/"
3333
rm -f "./.github/workflows/create.yml"
3434
35-
- name: "Add remove summary"
35+
- name: Add remove summary
3636
run: |
3737
echo "## Remove result" >> $GITHUB_STEP_SUMMARY
3838
echo "✅ Passed" >> $GITHUB_STEP_SUMMARY
3939
40-
- name: "Update commit"
41-
uses: "stefanzweifel/git-auto-commit-action@v5"
40+
- name: Update commit
41+
uses: stefanzweifel/git-auto-commit-action@v5
4242
with:
43-
commit_message: "feat: initial commit"
44-
commit_options: "--amend"
45-
push_options: "--force"
43+
commit_message: 'feat: initial commit'
44+
commit_options: --amend
45+
push_options: --force
4646
skip_fetch: true
4747

48-
- name: "Add commit summary"
48+
- name: Add commit summary
4949
run: |
5050
echo "## Commit result" >> $GITHUB_STEP_SUMMARY
5151
echo "✅ Passed" >> $GITHUB_STEP_SUMMARY

0 commit comments

Comments
 (0)