Skip to content

Commit

Permalink
aaaaaa
Browse files Browse the repository at this point in the history
Signed-off-by: Cal <[email protected]>
  • Loading branch information
CallumWalley authored Oct 9, 2024
1 parent f86bfc6 commit 67958e2
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions .github/workflows/fetch_includes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,8 @@ jobs:
git config --global user.name "${GITHUB_ACTOR}"
git config --global user.email "${GITHUB_ACTOR}@users.noreply.github.com"
git config pull.rebase true
git pull origin main
git branch -D ${BRANCH_NAME} || true
git checkout -b ${BRANCH_NAME}
git pull origin ${BRANCH_NAME} || git checkout -b ${BRANCH_NAME}
git merge origin ${GITHUB_REF}
mkdir -pv docs/assets/glossary
- name: Module List
run: |
Expand All @@ -43,10 +42,7 @@ jobs:
run: |
git fetch
body_message="This Merge Request was triggered by an update to $(git diff --name-only ${GITHUB_REF} | tr '\n' ', ')."
git fetch
if [[ $(git log ${GITHUB_REF}..HEAD) ]]; then
git rebase ${GITHUB_REF}
git pull origin ${GITHUB_REF}
git push origin ${BRANCH_NAME}
gh pr create -B ${GITHUB_REF} -H ${BRANCH_NAME} --title "Automatic Asset Update - $(date +'%Y-%m-%d')" --body "${body_message}" -l auto_merge
gh workflow run -R nesi/support-docs -r assets-update -f fileList=" " checks.yml
Expand Down

0 comments on commit 67958e2

Please sign in to comment.