Update connectors' list #19
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: "Update connectors' list" | |
| on: | |
| workflow_dispatch: | |
| schedule: | |
| - cron: '0 8 * * 1' | |
| jobs: | |
| update-connectors-list: | |
| runs-on: ubuntu-latest | |
| env: | |
| GITHUB_TOKEN: ${{ github.token }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Generate connectors.json, connector YAML files and connector documentation | |
| working-directory: src/connectorgen | |
| run: make generate | |
| - name: Create pull request | |
| uses: peter-evans/[email protected] | |
| with: | |
| title: Update connectors list | |
| body: Automatic pull request for updating list of connectors, specifications and documentation. | |
| branch: update-connectors-list | |
| commit-message: "[automated] Update connectors list" | |
| - name: Merge pull request | |
| run: gh pr merge --auto --squash update-connectors-list |