Skip to content

Commit

Permalink
Merge pull request #11 from Workiva/gha-impl
Browse files Browse the repository at this point in the history
FEA-2609: Implemented Github Actions
  • Loading branch information
rmconsole3-wf authored Oct 2, 2023
2 parents 3cf81f0 + e2603ca commit 44b0bfc
Show file tree
Hide file tree
Showing 5 changed files with 56 additions and 65 deletions.
15 changes: 15 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
## Motivation
<!--
High-level overview of what you are trying to fix or improve, and why.
Include any relevant background information that reviewers should know.
-->

## Changes
<!--
What this PR changes to fix the problem.
-->

## Testing/QA Instructions
<!--
List manual testing instructions here if necessary, or indicate passing CI suffices if the changes are well covered by automated tests.
-->
11 changes: 11 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
version: 2

updates:
- package-ecosystem: github-actions
directory: /
schedule:
interval: weekly
groups:
gha-dependencies:
patterns:
- "*"
29 changes: 29 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: CI

on:
pull_request:
push:
branches:
- master
tags:
- '*'

permissions:
contents: read
id-token: write

jobs:
package:
runs-on: [self-hosted, small]
steps:
- uses: actions/checkout@v3
- uses: Workiva/gha-dart/[email protected]

checks:
uses: Workiva/gha-dart/.github/workflows/[email protected]

unit-tests:
uses: Workiva/gha-dart/.github/workflows/[email protected]

semver-audit:
uses: Workiva/gha-dart/.github/workflows/[email protected]
3 changes: 1 addition & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
FROM drydock-prod.workiva.net/workiva/dart_build_image:3 as build

FROM scratch
63 changes: 0 additions & 63 deletions skynet.yaml

This file was deleted.

0 comments on commit 44b0bfc

Please sign in to comment.