Skip to content
Open
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
2 changes: 1 addition & 1 deletion .github/workflows/fetch-data.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
id: status
run: |
if [ -n "$(git status --porcelain)" ]; then
echo "::set-output name=has_changes::1"
echo "has_changes=1" >> $GITHUB_OUTPUT
fi
- name: Commit changes
if: steps.status.outputs.has_changes == '1'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/fetch-maintained.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
id: status
run: |
if [ -n "$(git status --porcelain)" ]; then
echo "::set-output name=has_changes::1"
echo "has_changes=1" >> $GITHUB_OUTPUT
fi
- name: Commit changes
if: steps.status.outputs.has_changes == '1'
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/post-dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,11 +49,11 @@ jobs:
run: |
dependabot_dir="${{ steps.metadata.outputs.directory }}"
if [[ "$dependabot_dir" == "/" ]]; then
echo "::set-output name=workspace::-iwr"
echo "workspace=-iwr" >> $GITHUB_OUTPUT
else
# strip leading slash from directory so it works as a
# a path to the workspace flag
echo "::set-output name=workspace::-w ${dependabot_dir#/}"
echo "workspace=-w ${dependabot_dir#/}" >> $GITHUB_OUTPUT
fi

- name: Apply Changes
Expand All @@ -62,7 +62,7 @@ jobs:
run: |
npm run template-oss-apply ${{ steps.flags.outputs.workspace }}
if [[ `git status --porcelain` ]]; then
echo "::set-output name=changes::true"
echo "changes=true" >> $GITHUB_OUTPUT
fi
# This only sets the conventional commit prefix. This workflow can't reliably determine
# what the breaking change is though. If a BREAKING CHANGE message is required then
Expand All @@ -72,7 +72,7 @@ jobs:
else
prefix='chore'
fi
echo "::set-output name=message::$prefix: postinstall for dependabot template-oss PR"
echo "message=$prefix: postinstall for dependabot template-oss PR" >> $GITHUB_OUTPUT

# This step will fail if template-oss has made any workflow updates. It is impossible
# for a workflow to update other workflows. In the case it does fail, we continue
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
## 📊 statusboard

[**npm.github.io/statusboard**](https://npm.github.io/statusboard/)
[**webdriverio.github.io/statusboard**](https://webdriverio.github.io/statusboard/)

A single view to help monitor the status/health of the [`@npm/cli`](https://github.com/orgs/npm/teams/cli) teams's Open Source Projects.
A single view to help monitor the status/health of the [`webdriverio`](https://github.com/webdriverio/) and [`webdriverio-community`](https://github.com/webdriverio-community/) teams's Open Source Projects.

### Data

Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/npm/statusboard.git"
"url": "https://github.com/webdriverio/statusboard.git"
},
"keywords": [],
"author": "GitHub Inc.",
"license": "ISC",
"bugs": {
"url": "https://github.com/npm/statusboard/issues"
"url": "https://github.com/webdriverio/statusboard/issues"
},
"homepage": "https://github.com/npm/statusboard#readme",
"homepage": "https://github.com/webdriverio/statusboard#readme",
"workspaces": [
"workspaces/*"
],
Expand Down
6 changes: 3 additions & 3 deletions workspaces/data/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,16 +16,16 @@
},
"repository": {
"type": "git",
"url": "https://github.com/npm/statusboard.git",
"url": "https://github.com/webdriverio/statusboard.git",
"directory": "workspaces/data"
},
"keywords": [],
"author": "GitHub Inc.",
"license": "ISC",
"bugs": {
"url": "https://github.com/npm/statusboard/issues"
"url": "https://github.com/webdriverio/statusboard/issues"
},
"homepage": "https://github.com/npm/statusboard#readme",
"homepage": "https://github.com/webdriverio/statusboard#readme",
"dependencies": {
"@octokit/graphql": "^5.0.1",
"@octokit/plugin-retry": "^4.0.3",
Expand Down
2 changes: 1 addition & 1 deletion workspaces/www/lib/js/metadata.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import * as util from './util.js'

const icon = (error) => error ? EL.icon('x-circle') : EL.icon('check-circle')

const getUrl = (id) => id ? `https://github.com/npm/statusboard/actions/runs/${id}` : null
const getUrl = (id) => id ? `https://github.com/webdriverio/statusboard/actions/runs/${id}` : null

const updateMetadata = (el, { 'fetch-data': fetchData, 'fetch-maintained': fetchMaintained }) => {
const BUILD_CONTEXT = process.env.BUILD_CONTEXT
Expand Down
6 changes: 3 additions & 3 deletions workspaces/www/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,16 +17,16 @@
},
"repository": {
"type": "git",
"url": "https://github.com/npm/statusboard.git",
"url": "https://github.com/webdriverio/statusboard.git",
"directory": "workspaces/www"
},
"keywords": [],
"author": "GitHub Inc.",
"license": "ISC",
"bugs": {
"url": "https://github.com/npm/statusboard/issues"
"url": "https://github.com/webdriverio/statusboard/issues"
},
"homepage": "https://github.com/npm/statusboard#readme",
"homepage": "https://github.com/webdriverio/statusboard#readme",
"devDependencies": {
"@npmcli/eslint-config": "^4.0.0",
"@npmcli/template-oss": "4.12.0",
Expand Down