Skip to content

Commit 4a68933

Browse files
committed
add clean workflow
1 parent 337aeff commit 4a68933

File tree

5 files changed

+25
-6
lines changed

5 files changed

+25
-6
lines changed

.github/workflows/clean.yml

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Clean Packages
2+
3+
on:
4+
schedule:
5+
- cron: '0 0 * * *'
6+
7+
jobs:
8+
clean-packages:
9+
permissions:
10+
packages: write
11+
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/delete-package-versions@v5
15+
with:
16+
package-name: ${{ github.event.repository.name }}
17+
package-type: 'container'
18+
min-versions-to-keep: 20
19+
ignore-versions: '^main|v\d+.\d+.\d+$'

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1818
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1919
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2020
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21-
SOFTWARE.
21+
SOFTWARE.

bird/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,4 +45,4 @@ COPY --from=builder /usr/sbin/bird* /usr/sbin/
4545
COPY --from=builder /etc/bird/ /etc/bird/
4646

4747
EXPOSE 179/tcp
48-
CMD ["bird", "-f", "-R"]
48+
CMD ["bird", "-f", "-R"]

bird/README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Bird
22

3-
This Dockerfile is heavilly inspired by https://github.com/akafeng/docker-bird (Apache License 2.0).
3+
This Dockerfile is heavilly inspired by https://github.com/akafeng/docker-bird (Apache License 2.0).
44
Thanks @akafeng!
55

6-
The biggest difference is the `BIRD_PROTOCOLS` arg which allow to define which protocols to use.
7-
You can use `all` as a default, but in this case alpha-released protocols like `bmp` won't be compiled.
6+
The biggest difference is the `BIRD_PROTOCOLS` arg which allow to define which protocols to use.
7+
You can use `all` as a default, but in this case alpha-released protocols like `bmp` won't be compiled.

renovate.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"extends": [
44
"config:recommended"
55
],
6-
6+
77
"ignoreTests": true,
88
"packageRules": [
99
{

0 commit comments

Comments
 (0)