Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: Add current date to dependecy PR #1240

Merged
merged 2 commits into from
Oct 15, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions .github/workflows/update_dependencies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,14 +28,18 @@ jobs:
run: |
flankScripts dependencies update

- name: Get current date
id: date
run: echo "::set-output name=date::$(date +'%Y-%m-%d')"

- name: Commit files and create Pull request
id: pr
uses: peter-evans/create-pull-request@v3
with:
commit-message: "[Automatic PR] Dependencies update"
signoff: false
branch: 'dependencies_update'
title: 'build: Dependencies updates'
branch: "dependencies-update-${{ steps.date.outputs.date }}"
title: "build: Dependencies updates [${{ steps.date.outputs.date }}]"
body: "Dependencies updates"
labels: |
automated pr
Expand Down