We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d02a559 commit 94723d3Copy full SHA for 94723d3
1 file changed
.github/workflows/auto-release.yml
@@ -25,6 +25,12 @@ jobs:
25
- name: Validate
26
id: validate
27
run: |
28
+ if [ "${{ github.event_name }}" == "schedule" ]; then
29
+ echo "Scheduled run - skipping user validation"
30
+ echo "result=true" >> $GITHUB_OUTPUT
31
+ exit 0
32
+ fi
33
+
34
IFS=',' read -r -a username_array <<< "${{ secrets.ACCEPT_RELEASE_PR_ALLOW_LIST }}"
35
user_found=false
36
for username in "${username_array[@]}"
0 commit comments