Skip to content

Commit

Permalink
Create test.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
skibitsky authored May 17, 2024
1 parent d63aada commit 2d91d35
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Test permissions

on: workflow_dispatch

jobs:
update:
runs-on: ubuntu-latest
permissions:
pull-requests: write
contents: write
steps:
- uses: actions/checkout@v4

- name: Make changes to pull request
run: date +%s > report.txt

- name: Create Pull Request
id: cpr
uses: peter-evans/create-pull-request@v6
with:
commit-message: Update report
signoff: false
branch: workflow-test
delete-branch: true
title: 'TEST'
body: |
TEST
draft: false

0 comments on commit 2d91d35

Please sign in to comment.