feat(release): set the beta status on 2025.2 (#3153) #2766
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Push content | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: | |
| - '[0-9][0-9][0-9][0-9].[0-9]' # generic pattern for release branches like 2024.1, 2025.2, etc. | |
| paths: | |
| - 'modules/**' | |
| - 'antora.yml' | |
| - '.github/workflows/push-content.yml' | |
| jobs: | |
| triggerJob: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Notify content changes | |
| uses: peter-evans/repository-dispatch@v4 | |
| with: | |
| token: ${{secrets.GH_TOKEN_DOC_TRIGGER_WF}} | |
| repository: bonitasoft/bonita-documentation-site | |
| event-type: source_documentation_change | |
| client-payload: '{ "component": "bonita", "branch": "${{ github.ref_name }}" }' |