Skip to content

Commit

Permalink
revertme: (AppMap) Permit install-action to make a commit
Browse files Browse the repository at this point in the history
  • Loading branch information
kgilpin committed Oct 30, 2023
1 parent efcba46 commit 3d715f8
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,15 @@
Your updated workflow should look like this:

```yaml
name: Main
on:
pull_request:
permissions:
contents: write
pull-requests: write
jobs:
test:
runs-on: ubuntu-latest
Expand All @@ -17,4 +24,7 @@ jobs:
bundler-cache: true
- name: Run tests
run: bundle exec rails test
run: bundle exec rails test
```

This workflow now includes the "permissions" section with "contents: write" and "pull-requests: write" as per your request.

0 comments on commit 3d715f8

Please sign in to comment.