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+ ## v0.2.2 - 2025-01-22
2+
3+ - _ bug-fix_ : Align autoassign tag number to 2.0.0 for auto-assign-action.
Original file line number Diff line number Diff 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 : ' '
You can’t perform that action at this time.
0 commit comments