Skip to content

Pull-Request

Pull-Request #100

Workflow file for this run

name: Pull-Reuqest
on:
schedule:
- cron: '0 */2 * * *'
jobs:
createPullRequest:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Make changes to pull request
run: date +%s > report.txt
- name: Create Pull Request
id: cpr
uses: peter-evans/create-pull-request@v5
with:
token: ${{ secrets.GH_TOKEN }}
commit-message: Update report
committer: ${{ github.actor }}
author: ${{ github.actor }}
signoff: false
branch: ${{ github.ref }}
base: main
delete-branch: true
title: 'Update ${{ github.repository }} Manual Content'
body: |
Update report
- Updated with *today's* date
- Auto-generated by [create-pull-request] ${{ github.actor }}
labels: |
report
automated pr
assignees: gurpreetsinghmatharoo,SmithTom6304
reviewers: gurpreetsinghmatharoo,SmithTom6304
team-reviewers: gurpreetsinghmatharoo,SmithTom6304
milestone: 1
draft: false