ARI4Java ARI APIs PR #27
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: ARI4Java ARI APIs PR | |
| on: | |
| schedule: | |
| - cron: '0 10 * * SAT' | |
| workflow_dispatch: | |
| jobs: | |
| getApis: | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Execute getApis | |
| run: | | |
| cd codegen | |
| chmod +x getApis.sh | |
| ./getApis.sh | |
| - name: Create Pull Request | |
| id: cpr | |
| uses: peter-evans/create-pull-request@v6 | |
| with: | |
| commit-message: ARI API Updates | |
| branch: apis | |
| delete-branch: true | |
| title: ARI API Updates | |
| body: New APIs | |
| - name: Check outputs | |
| run: | | |
| echo "Pull Request Number - ${{ steps.cpr.outputs.pull-request-number }}" | |
| echo "Pull Request URL - ${{ steps.cpr.outputs.pull-request-url }}" |