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 185f918 commit 2d0c586Copy full SHA for 2d0c586
.github/workflows/label_good_first_prs.yml
@@ -51,6 +51,21 @@ jobs:
51
52
# Define the sequence of job steps:
53
steps:
54
+ # Checkout the repository:
55
+ - name: 'Checkout repository'
56
+ # Pin action to full length commit SHA
57
+ uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
58
+ with:
59
+ # Specify whether to remove untracked files before checking out the repository:
60
+ clean: true
61
+
62
+ # Limit clone depth to the most recent commit:
63
+ fetch-depth: 1
64
65
+ # Specify whether to download Git-LFS files:
66
+ lfs: false
67
+ timeout-minutes: 10
68
69
# Check whether any of the referenced issues is a "Good First Issue":
70
- name: 'Check whether any of the referenced issues is a "Good First Issue"'
71
id: 'check-pr'
0 commit comments