Testing creating issues #11
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: Create issue for push to prod | |
on: | |
schedule: | |
# Runs on the 1st and 15th of each month at 9AM | |
- cron: "0 9 1,15 * *" | |
pull_request: | |
jobs: | |
create_issue: | |
runs-on: ubuntu-latest | |
env: | |
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set current date as env variable | |
run: | | |
echo "now=$(date +'%Y-%m-%d')" >> GITHUB_ENV | |
- name: Create issue | |
env: | |
label: "push to prod" | |
run: | | |
title=":rocket: Deploy to production: ${now}" | |
body="Deploy to production: ${now}" | |
gh issue create --title "${title}" --body "${body}" --label "${label}" |