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 0ecd2e3 commit 32d4853Copy full SHA for 32d4853
.github/workflows/python.yaml
@@ -75,6 +75,13 @@ jobs:
75
main-branch-name: ${{ steps.base-branch-name.outputs.BASE_BRANCH }}
76
77
78
+ - uses: matheusraz/ref-sha@v1
79
+ id: get-sha
80
+ with:
81
+ ref: ${{ steps.base-branch-name.outputs.BASE_BRANCH }}
82
+ length: 41
83
+
84
85
- name: Get all files that have changed
86
id: changed-files
87
if: ${{ github.ref_name != 'master' && github.ref_name != 'development' && github.ref_type != 'tag' }}
@@ -84,7 +91,8 @@ jobs:
91
**.py
92
!app/*/tests/
93
!app/*/migrations/
- base_sha: ${{ steps.setSHAs.outputs.base }}
94
+ # base_sha: ${{ steps.setSHAs.outputs.base }}
95
+ base_sha: ${{ steps.get-sha.outputs.sha }}
88
96
89
97
90
98
- name: List all changed files
0 commit comments