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

613 workflow with a status check not triggered when a pr initiated from a fork #614

Merged
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
14 changes: 7 additions & 7 deletions .github/workflows/sanity_check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@ permissions:
jobs:
check:
name: Check TARGETS file and code format
#runs-on: ubuntu:20.04
runs-on: [self-hosted, ubuntu, asrunner]
container:
image: ubuntu:focal
runs-on: ubuntu-20.04
#runs-on: [self-hosted, ubuntu, asrunner]
#container:
# image: ubuntu:focal
steps:

- name: pre
run: apt update && apt install -y sudo git make clang build-essential clang-format wget
run: sudo apt update && sudo apt install -y git make clang build-essential clang-format wget

- name: Checkout feature branch
uses: actions/checkout@v2
Expand All @@ -36,10 +36,10 @@ jobs:
architecture: 'x64'

- name: Install Dependencies
run: python -m pip install --upgrade pip
run: sudo python -m pip install --upgrade pip

- name: Install argparse
run: pip install argparse
run: sudo pip install argparse

- name: Download clang-format-diff.py
run: |
Expand Down