-
Notifications
You must be signed in to change notification settings - Fork 1k
106 lines (95 loc) · 3.69 KB
/
images-branch.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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
name: Branch images
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
on:
pull_request:
branches:
- main
types:
- synchronize
pull_request_review:
types:
- submitted
workflow_dispatch:
inputs:
pr:
required: true
type: string
description: PR number
jobs:
push-updater-images:
name: Deploy
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
suite:
- { name: bundler, ecosystem: bundler }
- { name: cargo, ecosystem: cargo }
- { name: composer, ecosystem: composer }
- { name: docker, ecosystem: docker }
- { name: elm, ecosystem: elm }
- { name: git_submodules, ecosystem: gitsubmodule }
- { name: github_actions, ecosystem: github-actions }
- { name: go_modules, ecosystem: gomod }
- { name: gradle, ecosystem: gradle }
- { name: hex, ecosystem: mix }
- { name: maven, ecosystem: maven }
- { name: npm_and_yarn, ecosystem: npm }
- { name: nuget, ecosystem: nuget }
- { name: pub, ecosystem: pub }
- { name: python, ecosystem: pip }
- { name: terraform, ecosystem: terraform }
permissions:
contents: read
packages: write
env:
TAG: ${{ github.sha }}
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set PR
run: echo "PR=${{ github.event.pull_request.number }}" >> $GITHUB_ENV
if: github.event_name != 'workflow_dispatch'
- name: Set PR (forks)
run: echo "PR=${{ inputs.pr }}" >> $GITHUB_ENV
if: github.event_name == 'workflow_dispatch'
# sets DECISION to the PR's review decision, handling the push-after-approval case
- name: Check if pull request is approved
run: |
DECISION=$(gh pr view ${{ env.PR }} --json reviewDecision,state -t '{{.reviewDecision}}:{{.state}}')
echo "Review decision is: $DECISION"
echo "DECISION=$DECISION" >> $GITHUB_ENV
# overwrite the previous result on pull request events on forks since forks can't publish to GHCR
- name: Skip forks
if: github.event.pull_request.head.repo.fork
run: echo "DECISION=FORK" >> $GITHUB_ENV
- name: Prepare tag
run: echo "TAG=${{ github.sha }}" >> $GITHUB_ENV
if: github.event_name == 'pull_request'
- name: Prepare tag (forks)
run: |
gh pr checkout ${{ inputs.pr }}
git fetch origin main
git merge origin/main --ff-only || exit 1
echo "TAG=$(git rev-parse HEAD)" >> $GITHUB_ENV
if: github.event_name == 'workflow_dispatch'
- name: Log in to GHCR
if: env.DECISION == 'APPROVED:OPEN'
run: |
echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u ${{ github.actor }} --password-stdin
- name: Build ecosystem image
if: env.DECISION == 'APPROVED:OPEN'
run: script/build ${{ matrix.suite.name }}
- name: Push branch image
if: env.DECISION == 'APPROVED:OPEN'
run: |
docker tag "ghcr.io/dependabot/dependabot-updater-${{ matrix.suite.ecosystem }}" "ghcr.io/dependabot/dependabot-updater-${{ matrix.suite.ecosystem }}:$TAG"
docker push "ghcr.io/dependabot/dependabot-updater-${{ matrix.suite.ecosystem }}:$TAG"
- name: Set summary
if: env.DECISION == 'APPROVED:OPEN'
run: |
echo "updater uploaded with tag \`$TAG\`" >> $GITHUB_STEP_SUMMARY
echo "\`\`\`" >> $GITHUB_STEP_SUMMARY
echo "ghcr.io/dependabot/dependabot-updater-${{ matrix.suite.ecosystem }}:$TAG" >> $GITHUB_STEP_SUMMARY
echo "\`\`\`" >> $GITHUB_STEP_SUMMARY