diff options
author | Kitzunu <24550914+Kitzunu@users.noreply.github.com> | 2023-09-10 14:01:03 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-10 09:01:03 -0300 |
commit | 2698ed5a26c5aa786301d575b6bca19f17b97571 (patch) | |
tree | 06416a138b9e2af23392f85d36b88dcc1bea1cf9 /.github | |
parent | fa6c9450948387ab21916231e74986e12708fceb (diff) |
fix(CI): pending files (#17229)
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/import_pending.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/import_pending.yml b/.github/workflows/import_pending.yml index ca4ef57714..d4eb1322f8 100644 --- a/.github/workflows/import_pending.yml +++ b/.github/workflows/import_pending.yml @@ -27,10 +27,10 @@ jobs: - name: Import and commit pending sql run: | git config user.email "azerothcorebot@gmail.com" && git config user.name "AzerothCoreBot" - bash bin/acore-db-pendings - deno run --allow-all --unstable apps/ci/ci-pending-changelogs.ts # Get the latest changes from git git pull --rebase origin "${{ github.ref_name }}" + bash bin/acore-db-pendings + deno run --allow-all --unstable apps/ci/ci-pending-changelogs.ts git add -A . git commit -am "chore(DB): import pending files" -m "Referenced commit(s): ${GITHUB_SHA}" || true env: |