Skip to content

Commit a86fea8

Browse files
committed
chore: add release notes for v0.2.2 with autoassign tag alignment
1 parent 9cf259b commit a86fea8

2 files changed

Lines changed: 8 additions & 2 deletions

File tree

.changes/v0.2.2.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
## v0.2.2 - 2025-01-22
2+
3+
- _bug-fix_: Align autoassign tag number to 2.0.0 for auto-assign-action.

.github/workflows/test.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,16 +36,19 @@ jobs:
3636
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
3737
- name: set-aqua-policy-if-file-exists
3838
run: |
39-
if [ -f aqua-policy.yaml ]; then
39+
if [[ -f aqua-policy.yaml ]]; then
4040
echo "AQUA_POLICY_CONFIG=${GITHUB_WORKSPACE}/aqua-policy.yaml:${AQUA_POLICY_CONFIG}" >> $GITHUB_ENV
41+
elif [[ -f .aqua/aqua-policy.yaml ]]; then
42+
echo "AQUA_POLICY_CONFIG=${GITHUB_WORKSPACE}/.aqua/aqua-policy.yaml:${AQUA_POLICY_CONFIG}" >> $GITHUB_ENV
4143
else
42-
echo "👉 No aqua-policy.yaml file found, skipping setting AQUA_POLICY_CONFIG"
44+
echo "👉 No aqua-policy.yaml or .aqua/aqua-policy.yaml file found, skipping setting AQUA_POLICY_CONFIG"
4345
fi
4446
- uses: aquaproj/aqua-installer@f13c5d2f0357708d85477aabe50fd3f725528745 # v3.1.0
4547
with:
4648
aqua_version: v2.42.2
4749
enable_aqua_install: true
4850
aqua_opts: '--tags test'
51+
policy_allow: true
4952
env:
5053
AQUA_LOG_LEVEL: debug
5154
AQUA_OPTS: ''

0 commit comments

Comments
 (0)