Skip to content

Commit

Permalink
Merge pull request #251 from Workiva/reuseable_workflows
Browse files Browse the repository at this point in the history
FEDX-1480: implemented reusable workflows
  • Loading branch information
rmconsole3-wf authored Aug 22, 2024
2 parents a269ea2 + 2ee3304 commit 6a9931e
Show file tree
Hide file tree
Showing 4 changed files with 44 additions and 63 deletions.
14 changes: 14 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
version: 2
updates:
- package-ecosystem: github-actions
directory: /
schedule:
interval: weekly
groups:
gha:
patterns: ["*"]
- package-ecosystem: pub
versioning-strategy: increase
directory: /
schedule:
interval: weekly
15 changes: 15 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: CI

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

jobs:
checks:
uses: Workiva/gha-dart-oss/.github/workflows/[email protected]
build:
uses: Workiva/gha-dart-oss/.github/workflows/[email protected]
test:
uses: Workiva/gha-dart-oss/.github/workflows/[email protected]
63 changes: 0 additions & 63 deletions .github/workflows/dart_ci.yml

This file was deleted.

15 changes: 15 additions & 0 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: Publish

on:
push:
tags:
- '[0-9]+.[0-9]+.[0-9]+'

permissions:
contents: write
id-token: write
pull-requests: write

jobs:
publish:
uses: Workiva/gha-dart-oss/.github/workflows/[email protected]

0 comments on commit 6a9931e

Please sign in to comment.