File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ name : Create reminder issue for buildpack releases
2+
3+ on :
4+ schedule :
5+ - cron : ' 0 10 * * 3 '
6+ workflow_dispatch : {}
7+
8+ jobs :
9+ reminder :
10+ name : Reminder
11+ runs-on : ubuntu-22.04
12+ steps :
13+ - name : Get Month
14+ id : date
15+ run : |
16+ echo "day_of_month=$(date +'%b %d')" >> "${GITHUB_OUTPUT}"
17+
18+ - name : File Issue
19+ id : file-issue
20+ uses : paketo-buildpacks/github-config/actions/issue/file@main
21+ with :
22+ token : ${{ secrets.PAKETO_BOT_GITHUB_TOKEN }}
23+ repo : ${{ github.repository }}
24+ issue_title : " Week of (${{ steps.date.outputs.day_of_month }}): Cut buildpack releases"
25+ issue_body : " "
26+
27+ - name : Add issue to project
28+ id : issue-to-proj
29+ uses : paketo-buildpacks/github-config/actions/issue/add-to-project@main
30+ with :
31+ # Paketo buildpacks project -https://github.com/orgs/paketo-buildpacks/projects/20
32+ project-org : paketo-buildpacks
33+ project-num : 20
34+ field-name : Workstream
35+ option-name : Buildpack Releases
36+ issue-node-id : ${{ steps.file-issue.outputs.node-id }}
37+ token : ${{ secrets.PAKETO_BOT_GITHUB_TOKEN }}
You can’t perform that action at this time.
0 commit comments