Skip to content

Commit

Permalink
Merge branch 'master' into S01_TS_PullRequestAutomation
Browse files Browse the repository at this point in the history
  • Loading branch information
LivintLucian authored Jun 20, 2022
2 parents 228ed04 + ac828de commit bdbaf83
Show file tree
Hide file tree
Showing 6 changed files with 52 additions and 15 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
on:
schedule:
- cron: '47 19 * * *'
name: create-pull-request workflow
jobs:
createPullRequest:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Create report file
run: date +%s > report.txt
- name: Create Pull Request
uses: peter-evans/create-pull-request@v3
with:
token: ${{ secrets.GITHUB_TOKEN }}
commit-message: Add report file
title: '[Example] Add report file'
body: >
This PR is auto-generated by
[create-pull-request](https://github.com/peter-evans/create-pull-request).
labels: report, automated pr
25 changes: 25 additions & 0 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
on:
# Triggers the workflow on push or pull request events but only for the "master" branch
push:
branches: [ "master", "Test", "Acceptance"]

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
name: create-pull-request workflow
jobs:
createPullRequest:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Create report file
run: date +%s > report.txt
- name: Create Pull Request
uses: peter-evans/create-pull-request@v3
with:
token: ${{ secrets.GITHUB_TOKEN }}
commit-message: Add report file
title: '[Example] Add report file'
body: >
This PR is auto-generated by
[create-pull-request](https://github.com/peter-evans/create-pull-request).
labels: report, automated pr
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ Action Scenario: Master branch;
TestPR2
TestPrAutomation
TestPrAutomation2
TestAutomaticCommitMessage
TestAutomaticCommitMessage
16 changes: 3 additions & 13 deletions Task 3- Web Api/Classes/Client/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Task 3- Web Api/Classes/Client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"devDependencies": {},
"dependencies": {
"jquery": "3.5.0",
"jquery-validation": "1.17.0",
"jquery-validation": "1.19.3",
"jquery-validation-unobtrusive": "3.2.10",
"bootstrap": "4.3.1",
"popper.js": "1.14.4"
Expand Down
1 change: 1 addition & 0 deletions report.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
1654287702

0 comments on commit bdbaf83

Please sign in to comment.