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.
2 parents 315fb4f + 01904b9 commit 74776b4Copy full SHA for 74776b4
README.md
@@ -202,14 +202,14 @@ You can use the `github.graphql` object to run custom GraphQL queries against th
202
```yaml
203
204
jobs:
205
- list-packages:
+ list-issues:
206
runs-on: ubuntu-latest
207
steps:
208
- uses: actions/github-script@v3
209
with:
210
github-token: ${{secrets.GITHUB_TOKEN}}
211
script: |
212
- const query = `query($owner:String!, $name:String!) {
+ const query = `query($owner:String!, $name:String!, $label:String!) {
213
repository(owner:$owner, name:$name){
214
issues(first:100, labels: [$label]) {
215
nodes {
0 commit comments