We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a8de6e2 commit e2ff3d9Copy full SHA for e2ff3d9
.github/workflows/codecoverage-main.yml
@@ -91,7 +91,13 @@ jobs:
91
if: ${{ hashFiles('wp-content') != '' }} # TODO: This may be incorrect since it's a directory.
92
run: sudo chmod -R a+w wp-content
93
94
- # On trunk, there will be a previous coverage report. On PRs we create a new directory using the commit SHA.
+ - name: Print refs
95
+ run: |
96
+ echo "ref: ${{ github.ref }}"
97
+ echo "head_ref: ${{ github.head_ref }}"
98
+ echo "base_ref: ${{ github.base_ref }}"
99
+
100
+ # On trunk, there will be a previous coverage report. On PRs we create a new directory using the commit SHA.
101
- name: Clear previous code coverage
102
if: ${{ (matrix.php == '7.3') && (github.ref == 'refs/heads/trunk') }}
103
run: |
0 commit comments