diff --git a/.github/workflows/generate_changlog_file.yml b/.github/workflows/generate_changlog_file.yml index c9b1950d5..8afb9a4bd 100644 --- a/.github/workflows/generate_changlog_file.yml +++ b/.github/workflows/generate_changlog_file.yml @@ -16,15 +16,7 @@ jobs: with: token: ${{ secrets.GITHUB_TOKEN }} headerLabel: "# 📑 Changelog" -<<<<<<< HEAD -<<<<<<< HEAD addSections: '{"documentation":{"prefix":"### 📖 Documentation","labels":["document"]},"Features":{"prefix":"### 🚀 Features","labels":["feature"]},"Enhancement":{"prefix":"### 🔥 Enhancement","labels":["enhancement"]},"bugfix":{"prefix":"🐛 Bug Fixes","labels":["bugfix"]},"refactor":{"prefix":"### 🐝 refactor","labels":["refactor"]},"chore":{"prefix":"### 🧰 Chore","labels":["chore"]},"Otherchanges":{"prefix":"✨ Other changes","labels":[""]},"dependencies":{"prefix":"⬆️ Dependency Updates","labels":["dependencies"]},"style":{"prefix":"🌈 Style","labels":["style"]}}' -======= - addSections: '{"documentation":{"prefix":"### 📖 Documentation","labels":["document"]},"Features":{"prefix":"### 🚀 Features","labels":["feature"]},"Enhancement":{"prefix":"### 🚀 Enhancement","labels":["enhancement"]},"bugfix":{"prefix":"🐛 Bug Fixes","labels":["bugfix"]},"refactor":{"prefix":"### 🐝 refactor","labels":["refactor"]},"chore":{"prefix":"### 🧰 Chore","labels":["chore"]},"Otherchanges":{"prefix":"✨ Other changes","labels":[""]},"dependencies":{"prefix":"⬆️ Dependency Updates","labels":["dependencies"]},"style":{"prefix":"🌈 Style","labels":["style"]}}' ->>>>>>> c3ddb29 (ci: workflow to generate changlog) -======= - addSections: '{"documentation":{"prefix":"### 📖 Documentation","labels":["document"]},"Features":{"prefix":"### 🚀 Features","labels":["feature"]},"Enhancement":{"prefix":"### 🔥 Enhancement","labels":["enhancement"]},"bugfix":{"prefix":"🐛 Bug Fixes","labels":["bugfix"]},"refactor":{"prefix":"### 🐝 refactor","labels":["refactor"]},"chore":{"prefix":"### 🧰 Chore","labels":["chore"]},"Otherchanges":{"prefix":"✨ Other changes","labels":[""]},"dependencies":{"prefix":"⬆️ Dependency Updates","labels":["dependencies"]},"style":{"prefix":"🌈 Style","labels":["style"]}}' ->>>>>>> 0308bf9 (ci: update prefix image) author: true compareLink: true stripGeneratorNotice: true @@ -42,18 +34,7 @@ jobs: with: token: ${{ secrets.TOKEN }} signoff: false -<<<<<<< HEAD -<<<<<<< HEAD - commit-message: "docs: automated update CHANGELOG.md" - branch: bot-${{ github.repository }} - title: "docs: automated update CHANGELOG.md" - commit-message: "feat: automated pr to change config files" -======= - commit-message: "docs: automated update CHANGELOG.mds" ->>>>>>> 94bbc12 (ci: update commit message) -======= commit-message: "docs: automated update CHANGELOG.md" ->>>>>>> 0308bf9 (ci: update prefix image) branch: bot-${{ github.repository }} title: "docs: automated update CHANGELOG.md" body: "automated pr to change log" diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index bc5d27f73..32cb22c79 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -147,3 +147,22 @@ jobs: workflow: Somking test suit token: ${{ secrets.GITHUB_TOKEN }} inputs: '{ "axon_linux_release_tag": "${{ needs.version.outputs.tag }}" }' + + trigger-build-docker-image: + runs-on: ubuntu-latest + needs: + - version + steps: + - uses: actions/checkout@v3 + - name: Generate axon-bot token + id: generate_axon_bot_token + uses: wow-actions/use-app-token@v2 + with: + app_id: ${{ secrets.AXON_BOT_APP_ID }} + private_key: ${{ secrets.AXON_BOT_PRIVATE_KEY }} + - name: Invoke build docker image with inputs + uses: aurelien-baudet/workflow-dispatch@v2 + with: + workflow: Build docker image + token: ${{ secrets.GITHUB_TOKEN }} + inputs: '{ "dispatch": "${{ needs.version.outputs.tag }}" }'