-
Notifications
You must be signed in to change notification settings - Fork 20
77 lines (66 loc) · 2.72 KB
/
update-buildpack-toml.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
name: Update buildpack.toml
on:
schedule:
- cron: '1 6 * * *' # daily at 06:01 UTC
workflow_dispatch: {}
concurrency: buildpack_update
jobs:
update-buildpack-toml:
runs-on: ubuntu-22.04
name: Update buildpack.toml
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Checkout Branch
uses: paketo-buildpacks/github-config/actions/pull-request/checkout-branch@main
with:
branch: automation/buildpack.toml/update
- name: Update buildpack.toml
id: update
uses: paketo-buildpacks/github-config/actions/buildpack/update@main
- name: Commit
id: commit
uses: paketo-buildpacks/github-config/actions/pull-request/create-commit@main
with:
message: "Updating buildpacks in buildpack.toml"
pathspec: "."
keyid: ${{ secrets.PAKETO_BOT_GPG_SIGNING_KEY_ID }}
key: ${{ secrets.PAKETO_BOT_GPG_SIGNING_KEY }}
- name: Push Branch
if: ${{ steps.commit.outputs.commit_sha != '' }}
uses: paketo-buildpacks/github-config/actions/pull-request/push-branch@main
with:
branch: automation/buildpack.toml/update
- name: Open Pull Request (no semver label)
if: ${{ steps.commit.outputs.commit_sha != '' && steps.update.outputs.semver_bump == '' }}
uses: paketo-buildpacks/github-config/actions/pull-request/open@main
with:
token: ${{ secrets.PAKETO_BOT_GITHUB_TOKEN }}
title: "Updates buildpacks in buildpack.toml"
branch: automation/buildpack.toml/update
- name: Open Pull Request
if: ${{ steps.commit.outputs.commit_sha != '' && steps.update.outputs.semver_bump != '' }}
uses: paketo-buildpacks/github-config/actions/pull-request/open@main
with:
token: ${{ secrets.PAKETO_BOT_GITHUB_TOKEN }}
title: "Updates buildpacks in buildpack.toml"
branch: automation/buildpack.toml/update
label: "semver:${{ steps.update.outputs.semver_bump }}"
failure:
name: Alert on Failure
runs-on: ubuntu-22.04
needs: [update-buildpack-toml]
if: ${{ always() && needs.update-buildpack-toml.result == 'failure' }}
steps:
- name: File Failure Alert Issue
uses: paketo-buildpacks/github-config/actions/issue/file@main
with:
token: ${{ secrets.GITHUB_TOKEN }}
repo: ${{ github.repository }}
label: "failure:update-buildpack-toml"
comment_if_exists: true
issue_title: "Failure: Update Buildpack TOML workflow"
issue_body: |
Update Buildpack TOML workflow [failed](https://github.com/${{github.repository}}/actions/runs/${{github.run_id}}).
comment_body: |
Another failure occurred: https://github.com/${{github.repository}}/actions/runs/${{github.run_id}}