Skip to content

Commit

Permalink
Merge branch 'main' into eiriksm-patch-2
Browse files Browse the repository at this point in the history
  • Loading branch information
eiriksm authored Sep 23, 2024
2 parents 5d12cf7 + 4c501f2 commit f01741d
Show file tree
Hide file tree
Showing 9 changed files with 37 additions and 8 deletions.
7 changes: 7 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
version: 2
updates:

- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
21 changes: 20 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
name: Main CI

on:
schedule:
- cron: '0 0 * * *' # everyday at midnight
push:
branches:
- main
Expand All @@ -18,7 +20,7 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v1
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- run: docker pull ghcr.io/violinist-dev/update-check-runner:8.0-multi-composer-2
Expand All @@ -42,3 +44,20 @@ jobs:
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}

notify:
runs-on: ubuntu-latest
needs: run
steps:
- name: Trigger Workflow
uses: actions/github-script@v7
if: ${{ github.event_name != 'pull_request' }}
with:
github-token: ${{ secrets.PAT }}
script: |
github.rest.actions.createWorkflowDispatch({
owner: '${{ secrets.DISPATCH_REPO_OWNER }}',
repo: '${{ secrets.DISPATCH_REPO_REPO }}',
workflow_id: 'deploy.yml',
ref: 'master',
})
2 changes: 1 addition & 1 deletion built/createCloudJob.js

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

2 changes: 1 addition & 1 deletion built/createCloudJob.js.map

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

2 changes: 1 addition & 1 deletion built/createJob.js

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

2 changes: 1 addition & 1 deletion built/createJob.js.map

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

Loading

0 comments on commit f01741d

Please sign in to comment.