diff --git a/.github/workflows/cd-bleeding-edge.yaml b/.github/workflows/cd-bleeding-edge.yaml new file mode 100644 index 000000000..1be8113df --- /dev/null +++ b/.github/workflows/cd-bleeding-edge.yaml @@ -0,0 +1,31 @@ +name: Rebase bleeding-edge-v2 + +on: + workflow_dispatch: + +jobs: + rebase-bleeding-edge: + runs-on: ubuntu-latest + + steps: + uses: actions/checkout@v4 + with: + fetch-depth: 0 + + - name: configure git + run: | + git config user.name "github-actions[bot]" + git config user.email "github-actions[bot]@users.noreply.github.com" + + - name: fetch branches + run: | + git fetch origin main bleeding-edge-v2 + + - name: rebase bleeding-edge-v2 onto main + run: | + git checkout bleeding-edge-v2 + git rebase main + + - name: push changes + run: | + git push origin bleeding-edge-v2 --force diff --git a/.github/workflows/cd-docs.yaml b/.github/workflows/cd-docs.yaml index ca1153353..8c9acfd7c 100644 --- a/.github/workflows/cd-docs.yaml +++ b/.github/workflows/cd-docs.yaml @@ -1,4 +1,5 @@ -name: docs deployment +name: Docs deployment + on: workflow_dispatch: push: @@ -39,5 +40,5 @@ jobs: - name: Deploy uses: JamesIves/github-pages-deploy-action@v4.4.3 with: - branch: gh-pages # The branch the action should deploy to. - folder: site # The folder the action should deploy. + branch: gh-pages + folder: site diff --git a/.github/workflows/ci-build_test.yaml b/.github/workflows/ci-build_test.yaml index f896b60c0..e72b32967 100644 --- a/.github/workflows/ci-build_test.yaml +++ b/.github/workflows/ci-build_test.yaml @@ -1,4 +1,3 @@ -# Perform continuous integration tests on updates and pull requests name: Build test on: diff --git a/.github/workflows/ci-static_analysis.yaml b/.github/workflows/ci-lintformat.yaml similarity index 81% rename from .github/workflows/ci-static_analysis.yaml rename to .github/workflows/ci-lintformat.yaml index de83a3aa3..4b1b86a29 100644 --- a/.github/workflows/ci-static_analysis.yaml +++ b/.github/workflows/ci-lintformat.yaml @@ -1,4 +1,3 @@ -# Perform continuous integration tests on pull requests name: Ruff on: pull_request