mirror of
https://github.com/go-shiori/shiori.git
synced 2025-03-10 23:05:33 +08:00
chore: configuration for stale bot
This commit is contained in:
parent
cf88489187
commit
d70a8f2692
2 changed files with 24 additions and 1 deletions
22
.github/stale.yml
vendored
Normal file
22
.github/stale.yml
vendored
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
# Number of days of inactivity before an issue becomes stale
|
||||||
|
daysUntilStale: 30
|
||||||
|
# Number of days of inactivity before a stale issue is closed
|
||||||
|
daysUntilClose: 10
|
||||||
|
# Issues with these labels will never be considered stale
|
||||||
|
exemptLabels:
|
||||||
|
- tag:no-stale
|
||||||
|
- type:bug
|
||||||
|
- type:enhancement
|
||||||
|
- type:documentation
|
||||||
|
# Label to use when marking an issue as stale
|
||||||
|
staleLabel: tag:stale
|
||||||
|
# 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 any
|
||||||
|
activity for quite some time.
|
||||||
|
|
||||||
|
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
|
|
@ -11,4 +11,5 @@ FROM ghcr.io/ghcri/alpine:3.15
|
||||||
COPY --from=builder /src/shiori /usr/local/bin/
|
COPY --from=builder /src/shiori /usr/local/bin/
|
||||||
ENV SHIORI_DIR /srv/shiori/
|
ENV SHIORI_DIR /srv/shiori/
|
||||||
EXPOSE 8080
|
EXPOSE 8080
|
||||||
CMD ["/usr/local/bin/shiori", "serve"]
|
ENTRYPOINT ["/usr/local/bin/shiori"]
|
||||||
|
CMD ["serve"]
|
||||||
|
|
Loading…
Reference in a new issue