-
-
Notifications
You must be signed in to change notification settings - Fork 0
33 lines (29 loc) · 794 Bytes
/
Copy pathyarn_update.yml
File metadata and controls
33 lines (29 loc) · 794 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
name: Check for yarn updates
permissions: {}
on:
schedule:
- cron: '0 5 1 * *'
push:
branches:
- main
paths:
- '.github/workflows/yarn_update.yml'
workflow_dispatch:
jobs:
yarn-update-check:
name: Yarn update check
permissions:
contents: write
pull-requests: write
issues: write
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1
- name: Update yarn
uses: ffflorian/actions/yarn-update@bd0f6230f0235903981da2bd4a16e7154261ef33
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
git_authorship: 'Florian Imdahl <git@ffflorian.de>'
release_cooldown_days: '5'
assignees: 'ffflorian'