Mohammed Naser | c0c83fb | 2022-08-29 22:31:16 -0400 | [diff] [blame] | 1 | name: sync |
| 2 | |
| 3 | on: |
| 4 | workflow_dispatch: |
| 5 | schedule: |
| 6 | - cron: 0 0 * * * |
| 7 | |
| 8 | permissions: |
| 9 | contents: write |
| 10 | pull-requests: write |
| 11 | |
| 12 | jobs: |
| 13 | generate-data: |
| 14 | runs-on: ubuntu-latest |
| 15 | steps: |
| 16 | - uses: actions/checkout@v3 |
| 17 | - run: ./hack/update-openstack-images-data |
| 18 | - uses: peter-evans/create-pull-request@v4 |
| 19 | with: |
| 20 | commit-message: Automated OpenStack project versions bump |
| 21 | branch: auto/bump-openstack-refs |
| 22 | delete-branch: true |
| 23 | title: Automatic bump of OpenStack project versions |
| 24 | body: | |
| 25 | This is an automatic bump of OpenStack project versions in order to |
| 26 | make sure that we always have the latest images available. This |
| 27 | should be merged once all images build successfully. |
| 28 | assignees: | |
| 29 | mnaser |
| 30 | reviewers: | |
| 31 | mnaser |