Skip to content
Closed
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: 2 additions & 0 deletions .github/workflows/acceptance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ permissions:
jobs:
acceptance:
runs-on: ubuntu-latest
env:
NPM_CONFIG_REGISTRY: ${{ vars.CFS_NPM_REGISTRY || 'https://packagefeedproxy.microsoft.io/npm/' }}
steps:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # pin@v7.0.0
with:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/copilot-setup-steps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ on: workflow_dispatch
jobs:
copilot-setup-steps:
runs-on: ubuntu-latest
env:
NPM_CONFIG_REGISTRY: ${{ vars.CFS_NPM_REGISTRY || 'https://packagefeedproxy.microsoft.io/npm/' }}
# Set the permissions to the lowest permissions possible needed for *your steps*. Copilot will be given its own token for its operations.
permissions:
# If you want to clone the repository as part of your setup steps, for example to install dependencies, you'll need the `contents: read` permission. If you don't clone the repository in your setup steps, Copilot will do this for you automatically after the steps complete.
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ permissions:
jobs:
lint:
runs-on: ubuntu-latest
env:
NPM_CONFIG_REGISTRY: ${{ vars.CFS_NPM_REGISTRY || 'https://packagefeedproxy.microsoft.io/npm/' }}
steps:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # pin@v7.0.0
with:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/package-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ permissions:
jobs:
package-check:
runs-on: ubuntu-latest
env:
NPM_CONFIG_REGISTRY: ${{ vars.CFS_NPM_REGISTRY || 'https://packagefeedproxy.microsoft.io/npm/' }}

steps:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # pin@v7.0.0
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ jobs:
contents: write
id-token: write
env:
NPM_CONFIG_REGISTRY: ${{ vars.CFS_NPM_REGISTRY || 'https://packagefeedproxy.microsoft.io/npm/' }}
ATTESTED_FILES: |-
action.yml
dist/index.js
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ permissions:
jobs:
test:
runs-on: ubuntu-latest
env:
NPM_CONFIG_REGISTRY: ${{ vars.CFS_NPM_REGISTRY || 'https://packagefeedproxy.microsoft.io/npm/' }}
steps:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # pin@v7.0.0
with:
Expand Down
1 change: 1 addition & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
registry=https://packagefeedproxy.microsoft.io/npm/
min-release-age=10
Loading