diff --git a/.github/workflows/github-id.yml b/.github/workflows/github-id.yml new file mode 100644 index 000000000..61083a8c0 --- /dev/null +++ b/.github/workflows/github-id.yml @@ -0,0 +1,32 @@ +name: GitHub ID + +on: + pull_request: + branches: [main] + +jobs: + update: + name: Update + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + with: + fetch-depth: 0 + + - id: Get changed files + uses: jitterbit/get-changed-files@v1 + with: + format: "space-delimited" + + - name: Run script + uses: is-a-dev/github-id-script@v1 + with: + files: ${{ steps.files.outputs.all }} + + - name: Commit + uses: stefanzweifel/git-auto-commit-action@v4 + with: + commit_user_name: "GitHub Actions" + commit_user_email: "actions@github.com" + commit_message: "chore: add github user id" diff --git a/.github/workflows/id.yml b/.github/workflows/id.yml deleted file mode 100644 index 8f0ef2e62..000000000 --- a/.github/workflows/id.yml +++ /dev/null @@ -1,23 +0,0 @@ -name: ID_ADDER -on: [pull_request] - -jobs: - id: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - with: - fetch-depth: 0 - token: ${{ secrets.GITHUB_TOKEN }} - - id: files - uses: jitterbit/get-changed-files@v1 - with: - format: 'space-delimited' - - uses: is-a-dev/id_script@v1.0 - with: - files: ${{ steps.files.outputs.all }} - - uses: stefanzweifel/git-auto-commit-action@v4 - with: - commit_user_name: 'GitHub Actions' - commit_user_email: 'actions@github.co' - commit_message: 'chore: update user id'