Skip to content

Commit

Permalink
:ci: chore: add dependabot & nightly release
Browse files Browse the repository at this point in the history
Signed-off-by: SimonShiki <[email protected]>
  • Loading branch information
SimonShiki committed Feb 4, 2024
1 parent 0413e22 commit 0773d75
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# To get started with Dependabot version updates, you'll need to specify which
# package ecosystems to update and where the package manifests are located.
# Please see the documentation for all configuration options:
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates

version: 2
updates:
- package-ecosystem: "npm" # See documentation for possible values
directory: "/" # Location of package manifests
schedule:
interval: "daily"
commit-message:
prefix: ":package: chore: "
12 changes: 12 additions & 0 deletions .github/workflows/validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,15 @@ jobs:
path: |
dist/eureka-loader.user.js
dist/unpacked-extension.zip
- name: Create Nightly Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: nightly
release_name: Nightly ${{ github.ref }}
body: |
⚠️ Here is an nightly preview version, which may contain bugs, errors, or incomplete features. Nightly releases are not stable or supported, and are intended for testing and feedback purposes only. Use them at your own risk
draft: false
prerelease: true

0 comments on commit 0773d75

Please sign in to comment.