We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c452a8c commit 7d23dc7Copy full SHA for 7d23dc7
.github/actions/set-test-commands/action.yml
@@ -14,7 +14,8 @@ runs:
14
steps:
15
- name: set-test-commands
16
run: |
17
- if [[ ${{ github.ref_name }} == "main" ]]; then
+ if [[ ${{ github.ref_name }} == "main" || \
18
+ ( ${{ github.ref_type }} == "tag" && ${{ github.ref_name }} =~ v[0-9]\.[0-9]\.[0-9]$ )]]; then
19
echo "Using 'all' target on main branch (i.e. all tests are built & run)"
20
echo "all" > _affected_tests.txt
21
else
0 commit comments