Generate Issues #3712
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: Generate Issues | |
on: | |
schedule: | |
- cron: '0 1,7,13,19 * * *' | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Clone the repository | |
uses: "actions/checkout@v2" | |
with: | |
submodules: recursive | |
- name: Generate latest issues information | |
run: | | |
# Run the docker-compose command | |
docker-compose -f docker/docker-compose.yaml up --build issue_action | |
exit ${?} | |
shell: bash | |
env: | |
GITHUB_TOKEN: "${{ secrets.PAT }}" | |
- name: Create Pull Request with new Issues | |
uses: peter-evans/create-pull-request@v3 | |
with: | |
token: ${{ secrets.PAT }} | |
branch-suffix: timestamp | |
title: Update Issues | |
labels: automerge | |
signoff: true | |
delete-branch: false | |
commit-message: Update Issues |