Empty commit to trigger tests #269
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: Update | |
"on": | |
push: | |
branches: | |
- renovate/octokit-openapi-webhooks-* | |
- renovate/octokit-monorepo | |
- renovate/major-octokit-monorepo | |
jobs: | |
update: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
cache: npm | |
node-version: 20 | |
- run: npm ci | |
- run: npm run generate-types | |
- name: create pull request | |
uses: gr2m/[email protected] | |
env: | |
GITHUB_TOKEN: ${{ secrets.OCTOKITBOT_PAT }} | |
with: | |
title: 🚧 🤖📯 Webhooks changed | |
body: | |
An update to the OpenAPI spec has been detected, and required updates to | |
your code. Please review the changes and merge this PR if everything | |
looks good. | |
branch: ${{ github.ref }} | |
author: Octokit Bot <[email protected]> | |
commit-message: "WIP: Webhooks changed - please review" |