File tree 3 files changed +51
-9
lines changed
3 files changed +51
-9
lines changed Original file line number Diff line number Diff line change @@ -27,9 +27,19 @@ LICENSE -diff
27
27
28
28
# Exclude files from `git archive` (useful when packaging a release)
29
29
.env export-ignore
30
- /tests export-ignore
31
- /.github export-ignore
32
- /.gitignore export-ignore
33
- /.gitattributes export-ignore
34
- /vendor export-ignore
35
- /example export-ignore
30
+ /tests / export-ignore
31
+ .github export-ignore
32
+ .gitignore export-ignore
33
+ .gitattributes export-ignore
34
+ /vendor / export-ignore
35
+ /example / export-ignore
36
+ CODE_OF_CONDUCT.md export-ignore
37
+ CHANGELOG.md export-ignore
38
+ README.md export-ignore
39
+ index.php export-ignore
40
+ phpunit.xml export-ignore
41
+ composer.json export-ignore
42
+ composer.lock export-ignore
43
+ .editorconfig export-ignore
44
+ .env.example export-ignore
45
+ LICENSE export-ignore
Original file line number Diff line number Diff line change
1
+ name : " Update Changelog"
2
+
3
+ on :
4
+ release :
5
+ types : [released]
6
+
7
+ permissions :
8
+ contents : write
9
+
10
+ jobs :
11
+ update :
12
+ runs-on : ubuntu-latest
13
+ timeout-minutes : 5
14
+
15
+ steps :
16
+ - name : Checkout code
17
+ uses : actions/checkout@v4
18
+ with :
19
+ ref : master
20
+
21
+ - name : Update Changelog
22
+ uses : stefanzweifel/changelog-updater-action@v1
23
+ with :
24
+ latest-version : ${{ github.event.release.name }}
25
+ release-notes : ${{ github.event.release.body }}
26
+
27
+ - name : Commit updated CHANGELOG
28
+ uses : stefanzweifel/git-auto-commit-action@v5
29
+ with :
30
+ branch : main
31
+ commit_message : Update CHANGELOG
32
+ file_pattern : CHANGELOG.md
Original file line number Diff line number Diff line change 1
1
![ Supabase] ( https://getlogo.net/wp-content/uploads/2020/11/supabase-logo-vector.png )
2
2
3
- ![ GitHub Repo stars ] ( https://img.shields.io/github/stars/CodeWithSushil/supabase-client?style=for-the-badge&logo=Github )
3
+
4
4
![ Packagist Downloads] ( https://img.shields.io/packagist/dt/supabase-php/supabase-client?style=for-the-badge&logo=composer )
5
5
![ GitHub Release] ( https://img.shields.io/github/v/release/Ashishkumbhar01/supabase-php?style=for-the-badge )
6
6
![ GitHub License] ( https://img.shields.io/github/license/Ashishkumbhar01/supabase-php?style=for-the-badge )
7
- ![ GitHub forks ] ( https://img.shields.io/github/forks/Ashishkumbhar01 /supabase-php?style=for-the-badge&logo=Github )
8
- [ ![ GitHub Sponsors ] ( https://img.shields.io/github/sponsors/Ashishkumbhar01?style=for-the-badge&logo=Github%20Sponsors&label=Support%20me )] ( https://github.com/sponsors/Ashishkumbhar01 )
7
+ ![ Packagist Dependency Version ] ( https://img.shields.io/packagist/dependency-v/supabase-php /supabase-client/ php?style=for-the-badge )
8
+
9
9
10
10
11
11
Supabase client for PHP:
You can’t perform that action at this time.
0 commit comments