diff --git a/.github/workflows/oui_filepull.yml b/.github/workflows/oui_filepull.yml index 6d178e08..ab396a64 100644 --- a/.github/workflows/oui_filepull.yml +++ b/.github/workflows/oui_filepull.yml @@ -1,7 +1,7 @@ --- name: "OUI-Updates" -on: # yamllint disable-line rule:truthy +on: # yamllint disable-line rule:truthy schedule: - cron: "0 8 * * 4" @@ -24,7 +24,7 @@ jobs: run: "git checkout -b $BRANCH_NAME" # Push new branch so Flatbot can make its commit - name: "Push Flatbot branch" - run: "git push --set-upstream origin $BRANCH_NAME" + run: "git push -f --set-upstream origin $BRANCH_NAME" # This step installs Deno, which is a new Javascript runtime that improves on Node. Can be used for an optional postprocessing step - name: "Setup deno" uses: "denoland/setup-deno@main" diff --git a/.github/workflows/proto_filepull.yml b/.github/workflows/proto_filepull.yml index 4611e14e..bf02c00c 100644 --- a/.github/workflows/proto_filepull.yml +++ b/.github/workflows/proto_filepull.yml @@ -1,7 +1,7 @@ --- name: "Protocol-Updates" -on: # yamllint disable-line rule:truthy +on: # yamllint disable-line rule:truthy schedule: - cron: "0 8 * * 4" @@ -24,7 +24,7 @@ jobs: run: "git checkout -b $BRANCH_NAME" # Push new branch so Flatbot can make its commit - name: "Push Flatbot branch" - run: "git push --set-upstream origin $BRANCH_NAME" + run: "git push -f --set-upstream origin $BRANCH_NAME" # Install Black - name: "Install Python Black" run: "pip install black"