Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

run workflows on Namespace #1

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
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: 2 additions & 0 deletions .github/workflows/check-dist.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ jobs:
steps:
- uses: actions/checkout@v4

- run: git submodule update --init actions-toolkit

- name: Setup Node 20
uses: actions/setup-node@v4
with:
Expand Down
13 changes: 7 additions & 6 deletions .github/workflows/licensed.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
name: Licensed

on:
push:
branches:
- main
pull_request:
branches:
- main
# push:
# branches:
# - main
# pull_request:
# branches:
# - main
workflow_dispatch:

jobs:
test:
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:

strategy:
matrix:
runs-on: [ubuntu-latest, macos-latest, windows-latest]
runs-on: [namespace-profile-default, namespace-profile-default-arm64, namespace-profile-macos-sm]
fail-fast: false

runs-on: ${{ matrix.runs-on }}
Expand All @@ -25,6 +25,8 @@ jobs:
- name: Checkout
uses: actions/checkout@v4

- run: git submodule update --init actions-toolkit

- name: Setup Node 20
uses: actions/setup-node@v4
with:
Expand Down
2 changes: 1 addition & 1 deletion .gitmodules
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[submodule "actions-toolkit"]
path = actions-toolkit
url = git@github.com:namespacelabs/actions-toolkit.git
url = https://github.com/namespacelabs/actions-toolkit.git
Loading