Skip to content

Commit

Permalink
DRTVWR-601: Add GitHub Actions boilerplate.
Browse files Browse the repository at this point in the history
  • Loading branch information
nat-goodspeed committed Dec 15, 2023
1 parent e36e2af commit 92ebaff
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/dependabot.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
version: 2
updates:

- package-ecosystem: github-actions
directory: /
schedule:
interval: monthly
18 changes: 18 additions & 0 deletions .github/release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
changelog:
exclude:
labels:
- ignore-for-release
authors:
- dependabot
categories:
- title: Breaking Changes 🛠
labels:
- semver-major
- breaking-change
- title: New Features 🎉
labels:
- semver-minor
- enhancement
- title: Other Changes
labels:
- '*'
11 changes: 11 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
name: Build
on: [push]
jobs:
build:
runs-on: [ubuntu-latest]
steps:
- uses: secondlife/action-autobuild@v3
with:
platform: common
- uses: secondlife/action-autobuild-release@v2
if: startsWith(github.ref, 'refs/tags/v')

0 comments on commit 92ebaff

Please sign in to comment.