Skip to content

Commit

Permalink
Use grails-build as git user (#104)
Browse files Browse the repository at this point in the history
- Automated git commits should be using the `grails-build` user
- Update `actions/checkout` to v4
- Token not necessary for checkout
  • Loading branch information
matrei authored Aug 26, 2024
1 parent ca5844c commit 580279f
Showing 1 changed file with 6 additions and 8 deletions.
14 changes: 6 additions & 8 deletions .github/workflows/syncVersion.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,14 @@ jobs:
sync:
runs-on: ubuntu-latest
env:
GIT_USER_NAME: puneetbehl
GIT_USER_EMAIL: [email protected]
GIT_USER_NAME: 'grails-build'
GIT_USER_EMAIL: '[email protected]'
steps:
- name: Checkout repository
uses: actions/checkout@v2
with:
token: ${{ secrets.GITHUB_TOKEN }}
- name: Sync Latest Version
- name: "📥 Checkout repository"
uses: actions/checkout@v4
- name: "🔄 Sync Latest Version"
uses: ./.github/actions/sync-latest-version
- name: Create Pull Request
- name: "Create Pull Request"
uses: peter-evans/create-pull-request@v3
with:
token: ${{ secrets.GH_TOKEN }}
Expand Down

0 comments on commit 580279f

Please sign in to comment.