forked from airbytehq/airbyte
-
Notifications
You must be signed in to change notification settings - Fork 0
48 lines (43 loc) · 1.94 KB
/
format_fix.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
36
37
38
39
40
41
42
43
44
45
46
47
48
name: Fix formatting on a branch
run-name: Fix formatting on ${{ github.ref }}
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
# Cancel any previous runs on the same branch if they are still in progress
cancel-in-progress: true
on:
workflow_dispatch:
jobs:
format-fix:
runs-on: "ci-runner-connector-format-medium-dagger-0-6-4"
name: "Run airbyte-ci format fix all"
steps:
- name: Checkout Airbyte
uses: actions/checkout@v3
with:
ref: ${{ github.ref }}
# Important that this is set so that CI checks are triggered again
# Without this we would be forever waiting on required checks to pass
token: ${{ secrets.GH_PAT_APPROVINGTON_OCTAVIA }}
- name: Run airbyte-ci format fix all
uses: ./.github/actions/run-dagger-pipeline
continue-on-error: true
with:
context: "manual"
docker_hub_password: ${{ secrets.DOCKER_HUB_PASSWORD }}
docker_hub_username: ${{ secrets.DOCKER_HUB_USERNAME }}
gcs_credentials: ${{ secrets.METADATA_SERVICE_PROD_GCS_CREDENTIALS }}
sentry_dsn: ${{ secrets.SENTRY_AIRBYTE_CI_DSN }}
github_token: ${{ secrets.GH_PAT_MAINTENANCE_OCTAVIA }}
tailscale_auth_key: ${{ secrets.TAILSCALE_AUTH_KEY }}
subcommand: "format fix all"
# This is helpful in the case that we change a previously committed generated file to be ignored by git.
- name: Remove any files that have been gitignored
run: git ls-files -i -c --exclude-from=.gitignore | xargs -r git rm --cached
- name: Commit Formatting Changes (PR)
uses: stefanzweifel/git-auto-commit-action@v5
# Don't commit if we're on master
if: github.ref != 'refs/heads/master'
with:
commit_message: "chore: format code"
commit_user_name: Octavia Squidington III
commit_user_email: octavia-squidington-iii@users.noreply.github.com