|
| 1 | +name: Update |
| 2 | +on: |
| 3 | + repository_dispatch: |
| 4 | + types: [github-openapi-release] |
| 5 | + |
| 6 | + push: |
| 7 | + branches: |
| 8 | + - dependabot/npm_and_yarn/openapi-typescript-* |
| 9 | + |
| 10 | + workflow_dispatch: |
| 11 | + |
| 12 | +jobs: |
| 13 | + update: |
| 14 | + runs-on: ubuntu-latest |
| 15 | + if: github.event_name == 'workflow_dispatch' || github.event.client_payload.action == 'published' |
| 16 | + steps: |
| 17 | + - uses: actions/checkout@v2 |
| 18 | + - uses: actions/setup-node@v1 |
| 19 | + - run: npm ci |
| 20 | + # do not update cache for dependabot update |
| 21 | + - run: npm run download |
| 22 | + if: github.event_name != 'push' |
| 23 | + - run: npm run generate-types |
| 24 | + |
| 25 | + # create/update pull request for dispatch event update |
| 26 | + - name: Create Pull Request |
| 27 | + if: github.event_name != 'push' |
| 28 | + |
| 29 | + env: |
| 30 | + GITHUB_TOKEN: ${{ secrets.OCTOKITBOT_PAT }} |
| 31 | + with: |
| 32 | + title: "🚧 OpenAPI types changed" |
| 33 | + body: | |
| 34 | + Make sure to update the commits so that the merge results in helpful release notes, see [Merging the Pull Request & releasing a new version](https://github.com/octokit/rest.js/blob/master/CONTRIBUTING.md#merging-the-pull-request--releasing-a-new-version). |
| 35 | +
|
| 36 | + In general |
| 37 | +
|
| 38 | + - Avoid breaking changes at all costs |
| 39 | + - If there are no typescript changes, use `build: cache` as commit message |
| 40 | + - If there are there are only updates, use `fix: ...` |
| 41 | + - If there are any new additions, use `feat: ...` |
| 42 | + - If there are breaking changes, keep the previous ones and deprecate them. Only if there is no other way, add `BREAKING CHANGE: ...` to the commit body (not subject!) to trigger a breaking change. |
| 43 | + branch: "openapi-update" |
| 44 | + commit-message: "WIP" |
| 45 | + author: "Octokit Bot <[email protected]>" |
| 46 | + |
| 47 | + # update pull request for dependabot update |
| 48 | + - name: Create Pull Request |
| 49 | + if: github.event_name == 'push' |
| 50 | + |
| 51 | + env: |
| 52 | + GITHUB_TOKEN: ${{ secrets.OCTOKITBOT_PAT }} |
| 53 | + with: |
| 54 | + title: "🚧 OpenAPI types changed" |
| 55 | + body: | |
| 56 | + Make sure to update the commits so that the merge results in helpful release notes, see [Merging the Pull Request & releasing a new version](https://github.com/octokit/rest.js/blob/master/CONTRIBUTING.md#merging-the-pull-request--releasing-a-new-version). |
| 57 | +
|
| 58 | + In general |
| 59 | +
|
| 60 | + - Avoid breaking changes at all costs |
| 61 | + - If there are no typescript changes, use `build: cache` as commit message |
| 62 | + - If there are there are only updates, use `fix: ...` |
| 63 | + - If there are any new additions, use `feat: ...` |
| 64 | + - If there are breaking changes, keep the previous ones and deprecate them. Only if there is no other way, add `BREAKING CHANGE: ...` to the commit body (not subject!) to trigger a breaking change. |
| 65 | + branch: "${{ github.ref }}" |
| 66 | + commit-message: "WIP" |
| 67 | + author: "Octokit Bot <[email protected]>" |
0 commit comments