mirror of
https://github.com/ComfyFactory/ComfyFactorio.git
synced 2025-02-03 13:12:11 +02:00
gitignore fix 6
This commit is contained in:
parent
52d1000731
commit
a4a51dda4f
7
.github/issue_template.md
vendored
Normal file
7
.github/issue_template.md
vendored
Normal file
@ -0,0 +1,7 @@
|
||||
# Please follow the general troubleshooting steps first:
|
||||
|
||||
- [ ] Have you checked to ensure there aren't other open [Issues](../../../issues) for the same issue?
|
||||
|
||||
### Bug reports:
|
||||
|
||||
Please replace this line with a brief summary of your issue.
|
15
.github/pull_request_map_template.md
vendored
Normal file
15
.github/pull_request_map_template.md
vendored
Normal file
@ -0,0 +1,15 @@
|
||||
### All Submissions:
|
||||
|
||||
- [ ] Have you checked to ensure there aren't any other maps that are alike or similar to the PR?
|
||||
- [ ] Have you checked to ensure there aren't other open [Pull Requests](../../../pulls) for the same update/change?
|
||||
|
||||
### Tested Changes:
|
||||
|
||||
1. [ ] Have you lint your code (lua lint) locally prior to submission?
|
||||
|
||||
### Changes to Core Features:
|
||||
|
||||
- [ ] Have you added an explanation of what your changes do and why you'd like us to include them?
|
||||
- [ ] Have you successfully ran tests with your changes locally?
|
||||
|
||||
### Comments
|
15
.github/pull_request_module_template.md
vendored
Normal file
15
.github/pull_request_module_template.md
vendored
Normal file
@ -0,0 +1,15 @@
|
||||
### All Submissions:
|
||||
|
||||
- [ ] Have you checked to ensure there aren't any other modules that are alike or similar to the PR?
|
||||
- [ ] Have you checked to ensure there aren't other open [Pull Requests](../../../pulls) for the same update/change?
|
||||
|
||||
### Tested Changes:
|
||||
|
||||
1. [ ] Have you lint your code (lua lint) locally prior to submission?
|
||||
|
||||
### Changes to Core Features:
|
||||
|
||||
- [ ] Have you added an explanation of what your changes do and why you'd like us to include them?
|
||||
- [ ] Have you successfully ran tests with your changes locally?
|
||||
|
||||
### Comments
|
14
.github/pull_request_template.md
vendored
Normal file
14
.github/pull_request_template.md
vendored
Normal file
@ -0,0 +1,14 @@
|
||||
### All Submissions:
|
||||
|
||||
- [ ] Have you checked to ensure there aren't other open [Pull Requests](../../../pulls) for the same update/change?
|
||||
|
||||
### Tested Changes:
|
||||
|
||||
1. [ ] Have you lint your code (lua lint) locally prior to submission?
|
||||
|
||||
### Changes to Core Features:
|
||||
|
||||
- [ ] Have you added an explanation of what your changes do and why you'd like us to include them?
|
||||
- [ ] Have you successfully ran tests with your changes locally?
|
||||
|
||||
### Comments
|
17
.github/stale.yml
vendored
Normal file
17
.github/stale.yml
vendored
Normal file
@ -0,0 +1,17 @@
|
||||
# Number of days of inactivity before an issue becomes stale
|
||||
daysUntilStale: 60
|
||||
# Number of days of inactivity before a stale issue is closed
|
||||
daysUntilClose: 7
|
||||
# Issues with these labels will never be considered stale
|
||||
exemptLabels:
|
||||
- pinned
|
||||
- security
|
||||
# Label to use when marking an issue as stale
|
||||
staleLabel: wontfix
|
||||
# Comment to post when marking an issue as stale. Set to `false` to disable
|
||||
markComment: >
|
||||
This issue has been automatically marked as stale because it has not had
|
||||
recent activity. It will be closed if no further activity occurs. Thank you
|
||||
for your contributions.
|
||||
# Comment to post when closing a stale issue. Set to `false` to disable
|
||||
closeComment: false
|
29
.github/workflows/CI.yml
vendored
Normal file
29
.github/workflows/CI.yml
vendored
Normal file
@ -0,0 +1,29 @@
|
||||
name: CI
|
||||
|
||||
# Controls when the action will run. Triggers the workflow on push or pull request
|
||||
# events but only for the develop branch
|
||||
on:
|
||||
push:
|
||||
branches: [develop]
|
||||
pull_request:
|
||||
branches: [develop]
|
||||
|
||||
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
|
||||
jobs:
|
||||
# This workflow contains a single job called "build"
|
||||
build:
|
||||
# The type of runner that the job will run on
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
# Steps represent a sequence of tasks that will be executed as part of the job
|
||||
steps:
|
||||
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
|
||||
- uses: actions/checkout@v2
|
||||
|
||||
# Use "Factorio Mod luacheck" from the marketplace
|
||||
- name: Factorio Mod luacheck
|
||||
uses: Roang-zero1/factorio-mod-luacheck@v1.1.0
|
||||
with:
|
||||
# URL to the luacheckrc configuration file to be used during checking.
|
||||
# Per https://github.com/Roang-zero1/factorio-mod-luacheck/issues/2 - an empty string will use the project's .luacheckrc
|
||||
luacheckrc_url: 'https://raw.githubusercontent.com/ComfyFactory/ComfyFactorio/develop/.luacheckrc' # optional, default is https://raw.githubusercontent.com/Nexela/Factorio-luacheckrc/0.17/.luacheckrc
|
Loading…
x
Reference in New Issue
Block a user