Update package dependencies #230
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
on: | |
workflow_dispatch: # Run workflow manually (without waiting for the cron to be called), through the Github Actions Workflow page directly | |
name: Update package dependencies | |
jobs: | |
package-update: | |
if: github.repository == 'TTLApp/time-to-leave' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@master | |
- uses: tibdex/github-app-token@v1 | |
id: generate-token | |
with: | |
app_id: ${{ secrets.APP_ID }} | |
private_key: ${{ secrets.APP_PRIVATE_KEY }} | |
- name: set remote url | |
run: | | |
git remote set-url --push origin https://$GITHUB_ACTOR:${{ secrets.GITHUB_TOKEN }}@github.com/$GITHUB_REPOSITORY | |
npm install | |
- name: package-update | |
uses: taichi/actions-package-update@master | |
env: | |
AUTHOR_EMAIL: [email protected] | |
AUTHOR_NAME: Thamara Andrade | |
EXECUTE: "true" | |
GITHUB_TOKEN: ${{ steps.generate-token.outputs.token }} | |
LOG_LEVEL: debug | |
with: | |
args: -u --packageFile package.json --loglevel verbose |