-
Notifications
You must be signed in to change notification settings - Fork 0
update/2.0 #31
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
Merged
Merged
update/2.0 #31
Changes from all commits
Commits
Show all changes
19 commits
Select commit
Hold shift + click to select a range
9f4bccc
Auto action
AmeliaCute 92b31ff
[skip ci] update include submodule to latest main
github-actions[bot] 0cbffff
Okay it work :3
AmeliaCute b6df275
Merge branch 'auto/action-fix-branch' of https://github.com/ReDevCafe…
AmeliaCute 87de002
Merge pull request #30 from ReDevCafe/auto/action-fix-branch
AmeliaCute 6bc4c15
Update include commit when doing a pull request on Master
AmeliaCute 03692a0
Merge pull request #32 from ReDevCafe/fix/update-header-on-pr
AmeliaCute 06703df
Update header-update.yml
AmeliaCute 1dd8efb
Bouffone*
AmeliaCute 4a68a5f
Merge 1dd8efbbaf21188f9350548f9523ace1effcb50d into 03023f6d8f3dd8e38…
AmeliaCute fdb13a1
[skip ci] update include submodule to latest main
github-actions[bot] 34b601a
Update issue templates
AmeliaCute 75d8f31
Merge pull request #38 from ReDevCafe/community/issue-template
AmeliaCute 8e04408
Update offsets for GObjects, GNames, and GWorld in Offset.h
AmeliaCute 22d4a1a
Merge pull request #41 from ReDevCafe/update/2.0
AmeliaCute a680bb3
Merge 22d4a1ac73be6a584117a82e6cb751e2174234f3 into c017dc5ba5595deda…
AmeliaCute ba838b0
[skip ci] update include submodule to latest main
github-actions[bot] ff5bd77
update submodule to latest commit
AmeliaCute a2bd4c3
MAIS LAISSE MOI PR
AmeliaCute File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,43 @@ | ||
| --- | ||
| name: Bug report | ||
| about: Create a report to help us improve | ||
| title: "[BUG REPORT] " | ||
| labels: bug | ||
| assignees: AmeliaCute, EltyDev | ||
|
|
||
| --- | ||
|
|
||
| **Describe the bug** | ||
| A clear and concise description of what the bug is. | ||
|
|
||
| **To Reproduce** | ||
| Steps to reproduce the behavior: | ||
| ``` | ||
|
|
||
|
|
||
|
|
||
| ``` | ||
|
|
||
|
|
||
| **Expected behavior** | ||
| ``` | ||
|
|
||
|
|
||
|
|
||
| ``` | ||
|
|
||
| **Screenshots / Videos** | ||
| If applicable, add screenshots to help explain your problem. | ||
|
|
||
| FLiAPI Version: `1.10` | ||
|
|
||
| Mod list: | ||
| ``` | ||
| - | ||
| - | ||
|
|
||
| ``` | ||
|
|
||
|
|
||
| **Additional context** | ||
| Add any other context about the problem here. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,36 @@ | ||
| name: "Update submodule to latest" | ||
|
|
||
| on: | ||
| pull_request: | ||
| branches: [ "master" ] | ||
|
|
||
| permissions: | ||
| contents: write | ||
|
|
||
| jobs: | ||
| update-submodule: | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - name: Checkout repo | ||
| uses: actions/checkout@v4 | ||
| with: | ||
| fetch-depth: 0 | ||
| submodules: recursive | ||
| token: ${{ secrets.GITHUB_TOKEN }} | ||
|
|
||
| - name: Config user | ||
| run: | | ||
| git config user.name "github-actions[bot]" | ||
| git config user.email "github-actions[bot]@users.noreply.github.com" | ||
|
|
||
| - name: Update submodule | ||
| run: | | ||
| git submodule set-branch --branch main include | ||
| git submodule update --init --remote include | ||
| git add include | ||
| if ! git diff --staged --quiet; then | ||
| git commit -m "[skip ci] update include submodule to latest main" | ||
| git push origin HEAD:${{github.head_ref}} | ||
| else | ||
| echo "No update required" | ||
| fi |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
On est bien d'accord ça sert à utiliser les headers de la main dans le cas où on push dans la main ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
My bad j'avais pas vu mais en fait ça sert juste à pas fuck up notre include tu sais comme les trois premières releases de l'api où les include étaient vieux de trois mois T*T
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Après, à la place on pourrait dans le CD avant de build, récupérer le dernier commit de
FantasyLifeI-ModLoader-Headers/mainet le push puis build