Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

FEA-4627: fedx_codeowners_file #45

Merged
merged 6 commits into from
Sep 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* @Workiva/fedx
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
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Not sure if we'll need to avoid major version raises or not?

directory: /
schedule:
interval: weekly
24 changes: 24 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: CI

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

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

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

test-unit:
strategy:
matrix:
sdk: [ 2.19.6, stable ]
uses: Workiva/gha-dart-oss/.github/workflows/[email protected]
with:
sdk: ${{ matrix.sdk }}
46 changes: 0 additions & 46 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]
3 changes: 1 addition & 2 deletions pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,11 @@ environment:

dependencies:
args: ^2.3.1
glob: ^2.0.1
http: ^0.13.3
http_multi_server: ^3.2.1
io: ^1.0.3
logging: ^1.1.0
meta: ^1.8.0
lints: ^2.0.1
pub_semver: ^2.1.2
shelf: ^1.2.0
shelf_proxy: ^1.0.0
Expand All @@ -28,6 +26,7 @@ dev_dependencies:
# These two build deps are required by webdev.
build_runner: ^2.1.2
build_web_compilers: ^3.0.0
lints: ^2.0.1

shelf_static: ^1.1.0
sse: ^4.1.0
Expand Down