Pull-Request #577
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |