Skip to content
This repository has been archived by the owner on Jan 13, 2024. It is now read-only.

Commit

Permalink
autogen: updated common files in HiromiShikata
Browse files Browse the repository at this point in the history
  • Loading branch information
actions-user committed Jan 8, 2024
1 parent 091fa72 commit 763dd89
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/commit-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Lint commits
run: |
npx commitlint --from=HEAD~1 --to=HEAD --config ./.github/workflows/configs/commitlint.config.js
npx commitlint --from=origin/main --to=HEAD --config ./.github/workflows/configs/commitlint.config.js
check-dontmerge:
runs-on: ubuntu-latest
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/configs/commitlint.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ module.exports = {
'style',
'test',
'autogen',
'prep',
]
],
}
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/create-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ jobs:
uses: repo-sync/pull-request@v2
with:
github_token: ${{ secrets.GH_TOKEN }}
destination_branch: 'main'
source_branch: ''
pr_title: '${{ steps.branch_name.outputs.branch }}'
pr_body: 'This is an auto-create PR.'
destination_branch: "main"
source_branch: ""
pr_title: "${{ steps.branch_name.outputs.branch }}"
pr_body: "This is an auto-create PR."
draft: false

- name: Assign PR to author
Expand All @@ -40,7 +40,7 @@ jobs:
if: steps.create_pr.outputs.pr_number
id: get_pr_id
run: |
PR_DATA=$(curl -s -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" -H "Accept: application/vnd.github.v3+json" "https://api.github.com/repos/${{ github.repository }}/pulls/${{ steps.create_pr.outputs.pr_number }}")
PR_DATA=$(curl -s -H "Authorization: token ${{ secrets.GH_TOKEN }}" -H "Accept: application/vnd.github.v3+json" "https://api.github.com/repos/${{ github.repository }}/pulls/${{ steps.create_pr.outputs.pr_number }}")
PR_ID=$(echo "$PR_DATA" | jq -r '.node_id')
echo "::set-output name=node_id::$PR_ID"
Expand Down
23 changes: 17 additions & 6 deletions .github/workflows/empty-format-test-job.yml
Original file line number Diff line number Diff line change
@@ -1,15 +1,26 @@
name: Empty format test

on:
push
on: push

jobs:
format:
runs-on: ubuntu-latest
steps:
- run: echo "format"
test:
runs-on: ubuntu-latest
steps:
- run: echo "test"

format:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v4
with:
token: ${{ secrets.GH_TOKEN }}
- uses: actions/setup-node@v4
with:
node-version: 20
- run: git pull
- run: npx prettier --write "**/*.{md,yaml,yml}" && git --no-pager diff
- uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: 'style: re-format / npx prettier --write "**/*.{md,yaml,yml}"'

0 comments on commit 763dd89

Please sign in to comment.