From 3d715f8c4bd1e7783793fbffa16666594430e364 Mon Sep 17 00:00:00 2001 From: Kevin Gilpin Date: Mon, 30 Oct 2023 12:20:54 -0400 Subject: [PATCH] revertme: (AppMap) Permit install-action to make a commit --- .github/workflows/main.yml | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 1d89395..7af5694 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -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 @@ -17,4 +24,7 @@ jobs: bundler-cache: true - name: Run tests - run: bundle exec rails test \ No newline at end of file + run: bundle exec rails test +``` + +This workflow now includes the "permissions" section with "contents: write" and "pull-requests: write" as per your request. \ No newline at end of file