Skip to content

Commit 53addf3

Browse files
authored
Merge pull request #24 from sbe-arg/tests
feat: add action basic tests for the repositories
2 parents ad3890d + 621fd6e commit 53addf3

File tree

6 files changed

+85
-11
lines changed

6 files changed

+85
-11
lines changed

.github/workflows/tests.yml

+44
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
name: tests
2+
3+
on:
4+
workflow_dispatch:
5+
pull_request:
6+
types:
7+
- opened
8+
- edited
9+
- reopened
10+
- synchronize
11+
12+
permissions:
13+
contents: read
14+
15+
concurrency:
16+
group: ${{ github.repository }}/${{ github.workflow }}/${{ github.ref }}
17+
cancel-in-progress: false
18+
19+
jobs:
20+
21+
flow:
22+
runs-on: ubuntu-22.04
23+
permissions:
24+
contents: write
25+
steps:
26+
27+
- uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
28+
with:
29+
ref: ${{ github.event.pull_request.head.sha }}
30+
fetch-depth: '0'
31+
32+
- name: setup-git
33+
run: |
34+
git config --global user.name "GitHub Actions"
35+
git config --global user.email "[email protected]"
36+
37+
- name: simple-compose-service-updates
38+
uses: ./
39+
with:
40+
default_branch: 'main'
41+
skips: 'postgresql-repmgr:15' # skip 15 should show 16
42+
prs: 'skip' # todo how do we test the prs feature?
43+
env:
44+
GH_TOKEN: ${{ github.token }} # required

README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,9 @@ jobs:
4141
- name: simple-compose-service-updates
4242
uses: sbe-arg/[email protected] # use sha pinning when possible
4343
with:
44-
default_branch: 'main'
44+
default_branch: 'main|master|other' # defaults to 'main'
4545
skips: 'mongodb:6,postgresql-repmgr:15' # examples
46+
prs: 'skip|generate' # defaults to 'generate'
4647
env:
4748
GH_TOKEN: ${{ github.token }} # required
4849
```

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v0.2.0
1+
v0.2.1

action.yml

+13-2
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,13 @@ name: 'Simple compose service updates'
22
description: 'Simple compose service update process for your repos'
33
inputs:
44
default_branch:
5-
description: 'Path to file'
5+
description: 'default branch'
66
required: false
77
default: 'master'
8+
prs:
9+
description: 'prs?'
10+
required: false
11+
default: 'generate'
812
skips:
913
description: 'Skip some services'
1014
required: false
@@ -17,5 +21,12 @@ runs:
1721
run: |
1822
default_branch=${{ inputs.default_branch }}
1923
skips=${{ inputs.skips }}
24+
prs=${{ inputs.prs }}
25+
26+
# Validate the 'prs' input
27+
if [[ "$prs" != "generate" && "$prs" != "skip" ]]; then
28+
echo "Invalid value for 'prs' input. Allowed values are 'generate' or 'skip'."
29+
exit 1
30+
fi
2031
21-
${{ github.action_path }}/bin/pincher.sh "$default_branch" "$skips"
32+
${{ github.action_path }}/bin/pincher.sh "$default_branch" "$prs" "$skips"

bin/pincher.sh

+10-7
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,14 @@
22

33
# Updates compose service versions.
44

5-
default_branch="$1"
5+
default_branch="${1:-main}"
6+
prs="${2:-generate}"
67
# generate $skip_patterns
7-
IFS=',' read -ra skip_patterns <<< "$2"
8+
IFS=',' read -ra skip_patterns <<< "$3"
89

910
# branching, pr, senver compare and sed logic
1011
versions_magic() {
11-
if [ "$latest_version_in_registry" != "$v_rematched" ]
12+
if [ "$latest_version_in_registry" != "$v_rematched" ] && [ "$prs" = "generate" ]
1213
then
1314
skip=false
1415
for skip_pattern in "${skip_patterns[@]}"
@@ -47,17 +48,19 @@ versions_magic() {
4748
git push origin "compose/$image" --force
4849
pr_number=$(gh pr list --head "compose/$image" --json number --jq '.[0].number')
4950
if [ -n "$pr_number" ]; then
50-
echo "Updating PR #$pr_number"
51-
gh pr edit "$pr_number" --title "docker-compose: bump $image:$latest_version_in_registry" --body "Automated PR updated by GitHub Actions"
51+
echo "Updating PR #$pr_number"
52+
gh pr edit "$pr_number" --title "docker-compose: bump $image:$latest_version_in_registry" --body "Automated PR updated by GitHub Actions"
5253
else
53-
echo "No open PRs found for branch compose/$image. Creating a new PR."
54-
gh pr create --title "docker-compose: bump $image:$latest_version_in_registry" --head "compose/$image" --base "$default_branch" --body "Automated PR created by GitHub Actions"
54+
echo "No open PRs found for branch compose/$image. Creating a new PR."
55+
gh pr create --title "docker-compose: bump $image:$latest_version_in_registry" --head "compose/$image" --base "$default_branch" --body "Automated PR created by GitHub Actions"
5556
fi
5657
else
5758
echo "No porcelain, nothing to do."
5859
fi
5960
# go back to base branch
6061
git checkout "$default_branch"
62+
else
63+
echo "debug: prs=$prs, latest_version_in_registry=$latest_version_in_registry, v_rematched=$v_rematched, skip_patterns=${skip_patterns[*]}"
6164
fi
6265
}
6366

compose-tests.yaml

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
version: '3.9'
2+
3+
services:
4+
5+
hub:
6+
image: docker.io/bitnami/postgresql-repmgr:14.7.0
7+
8+
ghcr:
9+
image: ghcr.io/swissbuechi/one-time-secret:1.0.0
10+
11+
gcr:
12+
image: gcr.io/cadvisor/cadvisor:v0.47.1
13+
14+
mcr:
15+
image: mcr.microsoft.com/azure-storage/azurite:3.23.0

0 commit comments

Comments
 (0)