Skip to content

Commit cdd1b07

Browse files
Onboard to pf-consumer-testing (#1)
* Onboard to pf-consumer-testing * Remove PR preview action
1 parent 69f0cfe commit cdd1b07

File tree

4 files changed

+33
-51
lines changed

4 files changed

+33
-51
lines changed

.github/workflows/deploy-pr-preview.yaml

Lines changed: 0 additions & 40 deletions
This file was deleted.

.github/workflows/test-and-release.yaml

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ jobs:
88
test-and-release:
99
name: Release to npm and publish docs
1010
runs-on: ubuntu-latest
11+
permissions:
12+
contents: write
1113
steps:
1214
- name: Checkout
1315
uses: actions/checkout@v3
@@ -25,14 +27,6 @@ jobs:
2527
run: yarn build
2628
- name: Release
2729
env:
28-
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
30+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2931
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
3032
run: yarn run semantic-release
31-
- name: Build Storybook
32-
run: yarn storybook:export
33-
- name: Deploy Storybook to GitHub Pages
34-
uses: JamesIves/[email protected]
35-
with:
36-
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
37-
BRANCH: gh-pages
38-
FOLDER: storybook-static

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
{
2-
"name": "@migtools/lib-ui",
2+
"name": "@pf-consumer-testing/lib-ui",
33
"version": "1.0.0",
44
"main": "dist/index.js",
55
"module": "dist/index.es.js",
66
"files": [
77
"dist"
88
],
9-
"repository": "https://github.com/migtools/lib-ui.git",
9+
"repository": "https://github.com/patternfly-extension-testing/lib-ui.git",
1010
"publishConfig": {
1111
"access": "public",
1212
"branches": [

renovate.json

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
{
2+
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
3+
"extends": ["config:base"],
4+
"enabledManagers": ["npm"],
5+
"rangeStrategy": "bump",
6+
"includeForks": true,
7+
"packageRules": [
8+
{
9+
"packagePatterns": ["*"],
10+
"excludePackagePatterns": ["@patternfly/*"],
11+
"enabled": false
12+
},
13+
{
14+
"datasources": ["npm"],
15+
"packagePatterns": ["@patternfly/*"],
16+
"excludePackageNames": ["@patternfly/documentation-framework", "@patternfly/patternfly-a11y"],
17+
"groupName": "patternfly",
18+
"followTag": "prerelease"
19+
},
20+
{
21+
"datasources": ["npm"],
22+
"matchPackageNames": ["@patternfly/documentation-framework", "@patternfly/patternfly-a11y"],
23+
"groupName": "patternfly",
24+
"followTag": "latest"
25+
}
26+
]
27+
}
28+

0 commit comments

Comments
 (0)