Thanks to visit codestin.com Credit goes to github.com
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 315fb4f commit 01904b9Copy full SHA for 01904b9
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