Skip to content

Commit c0b1a29

Browse files
ci: fix env variable
1 parent 548bd6e commit c0b1a29

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

.github/workflows/main.yml

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@ on:
1414
jobs:
1515
repo:
1616
name: Test Repo Runner
17-
environment: 'test'
17+
environment:
18+
name: test
1819
runs-on: ubuntu-18.04
1920
strategy:
2021
fail-fast: false
@@ -41,8 +42,8 @@ jobs:
4142
path: "${{ github.repository }}"
4243
- name: Molecule for Ansible - GHR Repository
4344
uses: MonolithProjects/[email protected]
44-
env:
45-
PERSONAL_ACCESS_TOKEN: ${{ env.PERSONAL_ACCESS_TOKEN }}
45+
# env:
46+
# PERSONAL_ACCESS_TOKEN: ${{ env.PERSONAL_ACCESS_TOKEN }}
4647
with:
4748
os: ${{ matrix.config.os }}
4849
tag: ${{ matrix.config.tag }}
@@ -51,7 +52,8 @@ jobs:
5152

5253
org:
5354
name: Test Org Runner
54-
environment: 'test'
55+
environment:
56+
name: test
5557
runs-on: ubuntu-18.04
5658
strategy:
5759
fail-fast: false
@@ -62,8 +64,8 @@ jobs:
6264
path: "${{ github.repository }}"
6365
- name: Molecule for Ansible - GHR Organization
6466
uses: MonolithProjects/[email protected]
65-
env:
66-
PERSONAL_ACCESS_TOKEN: ${{ env.PERSONAL_ACCESS_TOKEN }}
67+
# env:
68+
# PERSONAL_ACCESS_TOKEN: ${{ env.PERSONAL_ACCESS_TOKEN }}
6769
with:
6870
molecule_command: test
6971
scenario: org

0 commit comments

Comments
 (0)