generated from sapphiredev/sapphire-template
-
-
Notifications
You must be signed in to change notification settings - Fork 34
42 lines (40 loc) · 1.57 KB
/
auto-updater.yml
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
34
35
36
37
38
39
40
41
42
name: Automatic Data Update
on:
workflow_dispatch:
schedule:
- cron: '0 2 * * *'
jobs:
DataUpdater:
name: Automatic Data Update
runs-on: ubuntu-latest
if: github.repository_owner == 'sapphiredev'
steps:
- name: Checkout Project
uses: actions/checkout@v4
- name: Install dependencies
uses: sapphiredev/.github/actions/install-yarn-dependencies@main
with:
node-version: 20
- name: Run plugin-api MIME type sync
run: yarn workspace @sapphire/plugin-api sync-mime-types
- name: Run prettier on the code
run: yarn format
- name: Commit any changes and create a pull request
env:
GITHUB_USER: github-actions[bot]
GITHUB_EMAIL: 41898282+github-actions[bot]@users.noreply.github.com
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
git add .;
if git diff-index --quiet HEAD --; then
echo "No changes to commit, exiting with code 0"
exit 0;
else
git remote set-url origin "https://${GITHUB_TOKEN}:x-oauth-basic@github.com/${GITHUB_REPOSITORY}.git";
git config --local user.email "${GITHUB_EMAIL}";
git config --local user.name "${GITHUB_USER}";
git checkout -b update-iana-mime-type/$(date +%F-%H-%M);
git commit -sam "feat: update mime types";
git push --set-upstream origin $(git rev-parse --abbrev-ref HEAD)
gh pr create -t "feat: update mime types" -b "*bleep bloop* I updated the IANA mime type list" -B main;
fi