fix telemetry?
This commit is contained in:
2
.github/actions/setup-tools/action.yml
vendored
2
.github/actions/setup-tools/action.yml
vendored
@@ -8,6 +8,8 @@ runs:
|
|||||||
uses: catchpoint/workflow-telemetry-action@v2
|
uses: catchpoint/workflow-telemetry-action@v2
|
||||||
with:
|
with:
|
||||||
comment_on_pr: false
|
comment_on_pr: false
|
||||||
|
env:
|
||||||
|
GITHUB_TOKEN: ""
|
||||||
|
|
||||||
- name: Setup mise
|
- name: Setup mise
|
||||||
uses: jdx/mise-action@v2
|
uses: jdx/mise-action@v2
|
||||||
|
|||||||
18
.github/workflows/run-acceptance-tests.yml
vendored
18
.github/workflows/run-acceptance-tests.yml
vendored
@@ -66,7 +66,11 @@ jobs:
|
|||||||
if: github.event_name == 'repository_dispatch' ||
|
if: github.event_name == 'repository_dispatch' ||
|
||||||
github.event.pull_request.head.repo.full_name == github.repository
|
github.event.pull_request.head.repo.full_name == github.repository
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
name: prerequisites
|
permissions:
|
||||||
|
contents: read
|
||||||
|
id-token: write
|
||||||
|
actions: write # For telemetry.
|
||||||
|
pull-requests: write # For schema comment.
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout Repo
|
- name: Checkout Repo
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
@@ -176,6 +180,10 @@ jobs:
|
|||||||
|
|
||||||
test:
|
test:
|
||||||
runs-on: pulumi-ubuntu-8core
|
runs-on: pulumi-ubuntu-8core
|
||||||
|
permissions:
|
||||||
|
contents: read
|
||||||
|
id-token: write
|
||||||
|
actions: write # For telemetry.
|
||||||
needs:
|
needs:
|
||||||
- prerequisites
|
- prerequisites
|
||||||
strategy:
|
strategy:
|
||||||
@@ -187,10 +195,6 @@ jobs:
|
|||||||
- dotnet
|
- dotnet
|
||||||
- go
|
- go
|
||||||
- java
|
- java
|
||||||
name: test
|
|
||||||
permissions:
|
|
||||||
contents: read
|
|
||||||
id-token: write
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout Repo
|
- name: Checkout Repo
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
@@ -286,6 +290,10 @@ jobs:
|
|||||||
if: github.event_name == 'repository_dispatch' ||
|
if: github.event_name == 'repository_dispatch' ||
|
||||||
github.event.pull_request.head.repo.full_name == github.repository
|
github.event.pull_request.head.repo.full_name == github.repository
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
permissions:
|
||||||
|
contents: read
|
||||||
|
id-token: write
|
||||||
|
actions: write # For telemetry.
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout Repo
|
- name: Checkout Repo
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
|||||||
Reference in New Issue
Block a user