You've already forked oauth2-proxy
mirror of
https://github.com/oauth2-proxy/oauth2-proxy.git
synced 2025-08-08 22:46:33 +02:00
chore(ci): add paths-ignore for none code related directories (#2695)
* add paths-ignore for none code related directories * add missing pipe
This commit is contained in:
17
.github/workflows/ci.yaml
vendored
17
.github/workflows/ci.yaml
vendored
@ -4,19 +4,25 @@ on:
|
|||||||
push:
|
push:
|
||||||
branches:
|
branches:
|
||||||
- '**'
|
- '**'
|
||||||
# - $default-branch
|
paths-ignore:
|
||||||
|
- '.devcontainer/**'
|
||||||
|
- '.vscode/**'
|
||||||
|
- 'contrib/**'
|
||||||
|
- 'docs/**'
|
||||||
pull_request:
|
pull_request:
|
||||||
branches:
|
branches:
|
||||||
- '**'
|
- '**'
|
||||||
# - $default-branch
|
paths-ignore:
|
||||||
|
- '.devcontainer/**'
|
||||||
|
- '.vscode/**'
|
||||||
|
- 'contrib/**'
|
||||||
|
- 'docs/**'
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
env:
|
env:
|
||||||
COVER: true
|
COVER: true
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
steps:
|
||||||
|
|
||||||
- name: Check out code
|
- name: Check out code
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
@ -59,7 +65,6 @@ jobs:
|
|||||||
docker:
|
docker:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
|
|
||||||
- name: Check out code
|
- name: Check out code
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
|
16
.github/workflows/codeql.yml
vendored
16
.github/workflows/codeql.yml
vendored
@ -2,10 +2,22 @@ name: "Code scanning - action"
|
|||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches: [master, ]
|
branches:
|
||||||
|
- master
|
||||||
|
paths-ignore:
|
||||||
|
- '.devcontainer/**'
|
||||||
|
- '.vscode/**'
|
||||||
|
- 'contrib/**'
|
||||||
|
- 'docs/**'
|
||||||
pull_request:
|
pull_request:
|
||||||
# The branches below must be a subset of the branches above
|
# The branches below must be a subset of the branches above
|
||||||
branches: [master]
|
branches:
|
||||||
|
- master
|
||||||
|
paths-ignore:
|
||||||
|
- '.devcontainer/**'
|
||||||
|
- '.vscode/**'
|
||||||
|
- 'contrib/**'
|
||||||
|
- 'docs/**'
|
||||||
schedule:
|
schedule:
|
||||||
- cron: '0 15 * * 2'
|
- cron: '0 15 * * 2'
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user