Skip to content

Commit

Permalink
chore: auro sync update
Browse files Browse the repository at this point in the history
  • Loading branch information
DukeFerdinand committed Dec 13, 2024
1 parent be9f1b2 commit 3a29023
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 21 deletions.
18 changes: 6 additions & 12 deletions .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -1,15 +1,9 @@
# Lines starting with '#' are comments.

# Each line is a file pattern followed by one or more owners.

# https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners#codeowners-syntax

# Lines starting with '#' are comments.
# Each line is a file pattern followed by one or more owners.
# https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners#codeowners-syntax
# The Auro team will be the default owners for everything in the repo.
* @AlaskaAirlines/generalauroreviewers

# Order is important. The last matching pattern has the most precedence.

# If a pull request touches any files in the ./src dir, only these owners

* @AlaskaAirlines/generalauroreviewers
# Order is important. The last matching pattern has the most precedence.
# If a pull request touches any files in the ./src dir, only these owners
# will be requested to review.
./src/* @AlaskaAirlines/auroteamreviewers
7 changes: 2 additions & 5 deletions .github/settings.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,11 @@ repository:
# See https://docs.github.com/en/free-pro-team@latest/rest/reference/repos#edit for all available settings.
# See https://github.com/apps/settings for app settings

# A short description of the repository that will show up on GitHub
description: Custom element that ....

# A URL with more information about the repository
homepage: https://auro.alaskaair.com/components/auro/button

# A comma-separated list of topics to set on the repository
topics: auro, design-system, custom-element, generator-v[genVersionDash]
topics: auro, design-system, custom-element

# Either `true` to enable issues for this repository, `false` to disable them.
has_issues: true
Expand Down Expand Up @@ -73,7 +70,7 @@ branches:
# Required. Require branches to be up to date before merging.
strict: true
# Required. The list of status checks to require in order to merge into this branch
contexts: ["test ([abstractNodeVersion])","test ([abstractNodeVersionNext])", "license/cla"]
contexts: ["test (18.x)", "test (20.x)", "license/cla"]
# Required. Enforce all configured restrictions for administrators. Set to true to enforce required status checks for repository administrators. Set to null to disable.
enforce_admins: false
# Required. Restrict who can push to this branch. Team and user restrictions are only available for organization-owned repositories. Set to null to disable.
Expand Down
13 changes: 12 additions & 1 deletion .github/workflows/publishDemo.yml
Original file line number Diff line number Diff line change
@@ -1 +1,12 @@
404: Not Found
name: Deploy Demo

on:
pull_request:
branches: [ main ]

jobs:

call-publish-demo-workflow:
uses: AlaskaAirlines/auro-library/.github/workflows/publishDemo.yml@main
secrets:
AURO_SURGE_TOKEN: ${{secrets.AURO_SURGE_TOKEN}}
6 changes: 3 additions & 3 deletions .github/workflows/testPublish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:

strategy:
matrix:
node-version: [ [abstractNodeVersion], [abstractNodeVersionNext] ]
node-version: [18.x, 20.x]

steps:
- uses: actions/checkout@v4
Expand All @@ -30,7 +30,7 @@ jobs:

release:
# Only release on push to main
if: github.event_name == 'push' && github.ref == 'refs/heads/main' || 'refs/heads/beta'
if: github.event_name == 'push' && (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/beta')
runs-on: ubuntu-latest
needs: test
steps:
Expand All @@ -39,7 +39,7 @@ jobs:
persist-credentials: false
- uses: actions/setup-node@v4
with:
node-version: [abstractNodeVersionNext]
node-version: 20.x
- run: npm ci
- run: npm run build:release
- uses: cycjimmy/semantic-release-action@v4
Expand Down

0 comments on commit 3a29023

Please sign in to comment.