Skip to content

Commit f1cdb87

Browse files
authored
Merge pull request #88 from gibahjoe/badges
added badges to readme
2 parents 822bbd2 + d0a0dbf commit f1cdb87

File tree

6 files changed

+12
-124
lines changed

6 files changed

+12
-124
lines changed

.github/labeler.yml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,12 @@
1-
github_actions:
1+
'github actions':
22
- '.github/workflows/*'
33
generator:
4-
- 'openapi-generator/*'
4+
- 'openapi-generator/**/*'
55
annotations:
6-
- 'openapi-generator-annotations/*'
6+
- 'openapi-generator-annotations/**/*'
77
cli:
8-
- 'openapi-generator-cli/*'
8+
- 'openapi-generator-cli/**/*'
9+
docs:
10+
- 'README.md'
11+
- 'CHANGELOG.md'
12+
- 'LICENSE'

.github/workflows/automation.yml

Lines changed: 0 additions & 41 deletions
Original file line numberDiff line numberDiff line change
@@ -13,47 +13,6 @@ on:
1313
pull_request_target:
1414

1515
jobs:
16-
compose-comment:
17-
name: Compose PR comment
18-
if: ${{ always() && !cancelled() && github.event_name == 'pull_request_target' }}
19-
uses: ./.github/workflows/job_messages.yml
20-
with:
21-
commit: ${{ github.event.pull_request.head.sha }}
22-
commenting_workflow_run_id: ${{ github.run_id }}
23-
in_progress: true
24-
25-
push-comment:
26-
name: Push comment to PR 🖥️
27-
if: |
28-
always() &&
29-
!cancelled() &&
30-
github.event_name == 'pull_request_target' &&
31-
needs.compose-comment.result == 'success'
32-
runs-on: ubuntu-latest
33-
needs:
34-
- compose-comment
35-
36-
steps:
37-
- name: Create comment
38-
uses: thollander/[email protected]
39-
with:
40-
GITHUB_TOKEN: ${{ secrets.OG_BOT_TOKEN }}
41-
message: ${{ needs.compose-comment.outputs.msg }}
42-
comment_tag: ${{ needs.compose-comment.outputs.marker }}
43-
mode: recreate
44-
45-
project:
46-
name: Project board 📊
47-
runs-on: ubuntu-latest
48-
steps:
49-
- uses: alex-page/[email protected]
50-
if: ${{ github.event_name == 'pull_request_target' }}
51-
continue-on-error: true
52-
with:
53-
project: Ongoing development
54-
column: In progress
55-
repo-token: ${{ secrets.OG_BOT_TOKEN }}
56-
5716
label:
5817
name: Labeling 🏷️
5918
runs-on: ubuntu-latest

.github/workflows/code_quality.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ on:
1212

1313
jobs:
1414
build:
15-
name: Build frontend 🛠️
15+
name: Build example project 🛠️
1616
runs-on: ubuntu-latest
1717
strategy:
1818
fail-fast: false
@@ -30,7 +30,7 @@ jobs:
3030
cache: true
3131
channel: 'stable'
3232
- run: flutter pub get
33-
# - run: flutter test
33+
- run: flutter pub run build_runner build --delete-conflicting-outputs
3434
- run: flutter build apk
3535

3636
# - name: Upload artifact (Client) ⬆️💻

.github/workflows/deploy.yml

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -30,21 +30,6 @@ jobs:
3030
echo "pr_number=$(cat PR_number)" >> $GITHUB_ENV
3131
echo "pr_sha=$(cat PR_sha)" >> $GITHUB_ENV
3232
33-
compose-comment:
34-
name: Compose comment
35-
if: ${{ always() }}
36-
uses: ./.github/workflows/job_messages.yml
37-
needs:
38-
- pr-context
39-
40-
with:
41-
branch: ${{ github.event.workflow_run.head_branch }}
42-
commit: ${{ needs.pr-context.outputs.commit != '' && needs.pr-context.outputs.commit || github.event.workflow_run.head_sha }}
43-
preview_url: ${{ needs.cf-pages.outputs.url }}
44-
build_workflow_run_id: ${{ github.event.workflow_run.id }}
45-
commenting_workflow_run_id: ${{ github.run_id }}
46-
in_progress: false
47-
4833
comment-status:
4934
name: Create comment status
5035
if: |

.github/workflows/job_messages.yml

Lines changed: 0 additions & 62 deletions
This file was deleted.

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
![pub package](https://img.shields.io/pub/v/openapi_generator.svg) ![Pub Likes](https://img.shields.io/pub/likes/openapi_generator?) ![Pub Points](https://img.shields.io/pub/points/openapi_generator) ![Pub Popularity](https://img.shields.io/pub/popularity/openapi_generator) ![GitHub Repo stars](https://img.shields.io/github/stars/gibahjoe/openapi-generator-dart)
2+
13
This codebase houses the dart/flutter implementations of the openapi client sdk code generation libraries.
24

35
With this project, you can generate openapi client sdk libraries for your openapi specification right in your flutter/dart projects. (see example)

0 commit comments

Comments
 (0)