feat: allow to implement custom type #237
Workflow file for this run
This file contains 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: Release Automatic | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main, next ] | |
jobs: | |
wait-for-workflows: | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- uses: int128/wait-for-workflows-action@v1.9.0 | |
with: | |
token: ${{ secrets.PAT_GLOBAL }} | |
release: | |
name: Release | |
runs-on: ubuntu-latest | |
needs: wait-for-workflows | |
steps: | |
- name: Fake step | |
run: | | |
echo "Run the release job" | |