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

[feature] skip ci #248

Closed
wants to merge 11 commits into from
Closed
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
5 changes: 5 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ on:
workflow_dispatch:
pull_request:
branches: [ "feature**", "hotfix**", "release**", "develop**", "master" ]
branches-ignore:
- 'test**'
paths-ignore:
- 'README.md'
- '.all-contributorsrc'

jobs:
common_setup:
Expand Down
12 changes: 11 additions & 1 deletion .github/workflows/common-setup.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,16 @@
name: Common Setup

on: workflow_call
on:
pull_request:
branches-ignore:
- 'test**'
push:
paths-ignore:
- 'README.md'
- '.all-contributorsrc'

workflow_call:
inputs: {}

jobs:
setup:
Expand Down
9 changes: 8 additions & 1 deletion .github/workflows/lint_check.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
name: Lint Check

on: pull_request
on:
pull_request:
branches-ignore:
- 'test**'
push:
paths-ignore:
- 'README.md'
- '.all-contributorsrc'

jobs:
lint-check:
Expand Down
6 changes: 2 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,18 +19,16 @@
| 🌐 Networking | [Retrofit](https://square.github.io/retrofit/), OkhttpClient|
| 😎 Test |Junit4|


<br/><br/>


## Architecture

<br/><br/>

## Contributors

check emoji plz([emoji key](https://allcontributors.org/docs/en/emoji-key)):=


## Contributors
<table>
<tr align="center">
<!-- ALL-CONTRIBUTORS-LIST:START - Do not remove or modify this section -->
Expand Down
Loading