forked from migtools/lib-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Onboard to pf-consumer-testing * Remove PR preview action
- Loading branch information
1 parent
69f0cfe
commit cdd1b07
Showing
4 changed files
with
33 additions
and
51 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,6 +8,8 @@ jobs: | |
test-and-release: | ||
name: Release to npm and publish docs | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: write | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
|
@@ -25,14 +27,6 @@ jobs: | |
run: yarn build | ||
- name: Release | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | ||
run: yarn run semantic-release | ||
- name: Build Storybook | ||
run: yarn storybook:export | ||
- name: Deploy Storybook to GitHub Pages | ||
uses: JamesIves/[email protected] | ||
with: | ||
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} | ||
BRANCH: gh-pages | ||
FOLDER: storybook-static |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
{ | ||
"$schema": "https://docs.renovatebot.com/renovate-schema.json", | ||
"extends": ["config:base"], | ||
"enabledManagers": ["npm"], | ||
"rangeStrategy": "bump", | ||
"includeForks": true, | ||
"packageRules": [ | ||
{ | ||
"packagePatterns": ["*"], | ||
"excludePackagePatterns": ["@patternfly/*"], | ||
"enabled": false | ||
}, | ||
{ | ||
"datasources": ["npm"], | ||
"packagePatterns": ["@patternfly/*"], | ||
"excludePackageNames": ["@patternfly/documentation-framework", "@patternfly/patternfly-a11y"], | ||
"groupName": "patternfly", | ||
"followTag": "prerelease" | ||
}, | ||
{ | ||
"datasources": ["npm"], | ||
"matchPackageNames": ["@patternfly/documentation-framework", "@patternfly/patternfly-a11y"], | ||
"groupName": "patternfly", | ||
"followTag": "latest" | ||
} | ||
] | ||
} | ||
|