generated from TBD54566975/tbd-project-template
-
Notifications
You must be signed in to change notification settings - Fork 7
35 lines (35 loc) · 1.3 KB
/
autofmt.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
on:
pull_request:
name: Auto-format
concurrency:
group: ${{ github.ref }}-autofmt
cancel-in-progress: true
jobs:
format:
# Check if the PR is not from a fork
if: ${{ !contains(github.event.head_commit.message, 'chore(autofmt):') }}
#if: github.event.pull_request.head.repo.full_name == github.repository
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.head_ref }}
- name: Init Hermit
run: ./bin/hermit env -r >> "$GITHUB_ENV"
- name: Auto format
run: autofmt
- name: Check for modified files
id: git-check
run: echo "modified=$(if git diff-index --quiet HEAD --; then echo "false"; else echo "true"; fi)" >> "$GITHUB_OUTPUT"
- name: Switch to main
if: github.ref == 'refs/heads/main'
run: |
git switch main
- name: Push changes
if: steps.git-check.outputs.modified == 'true'
run: |
git config --global user.email "github-actions[bot]@users.noreply.github.com"
git config --global user.name "github-actions[bot]"
git remote set-url origin https://x-access-token:${{ secrets.FTL_AUTOFMT_TOKEN }}@github.com/${{ github.repository }}
git commit -am "chore(autofmt): Automated formatting"
git push