Skip to content

Commit

Permalink
Merge pull request #42 from felipeog/issues
Browse files Browse the repository at this point in the history
Add workflow `update-issues`
  • Loading branch information
felipeog authored Sep 20, 2023
2 parents 3477d40 + c5ff8ef commit 5ac565f
Show file tree
Hide file tree
Showing 8 changed files with 1,252 additions and 14 deletions.
1 change: 1 addition & 0 deletions .env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
GH_TOKEN=token
2 changes: 0 additions & 2 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@ name: Test
on:
pull_request:
branches: [master]
push:
branches: [master]

jobs:
test:
Expand Down
19 changes: 19 additions & 0 deletions .github/workflows/update-issues.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Update issues

on:
push:
branches: [master]

env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}

jobs:
update-issues:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: 16.x
- run: npm ci
- run: npm run update-github-issues
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@ node_modules
src/tests/solutionsImages/*.png
.DS_Store
.parcel-cache
.env
Loading

0 comments on commit 5ac565f

Please sign in to comment.