Skip to content

Commit

Permalink
stale issue cleanup (#16)
Browse files Browse the repository at this point in the history
* stale issue cleanup
* auto labeling github action for #42
Signed-off-by: Weinfurtner Jared (CI/SIX-EU) <jared.weinfurtner@de.bosch.com>
Signed-off-by: Sebastian Becker <sebastian.becker@de.bosch.com>
Co-authored-by: Sebastian Becker <sebastian.becker@de.bosch.com>
  • Loading branch information
jaredweinfurtner committed Nov 24, 2022
1 parent 03d001a commit 7e71e53
Show file tree
Hide file tree
Showing 2 changed files with 45 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/auto-labeler.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
#
# Copyright (c) 2022 - for information on the respective copyright owner
# see the NOTICE file and/or the repository https://github.com/carbynestack/java-http-client.
#
# SPDX-License-Identifier: Apache-2.0
#
name: 'Auto Labeler'

on:

# Allow workflow to be triggered manually
workflow_dispatch:

issues:
types:
- reopened
- opened

jobs:

# re-usable workflow @see https://docs.github.com/en/actions/using-workflows/reusing-workflows
auto-labeling:
uses: carbynestack/.github/.github/workflows/auto-labeler.yml@master
22 changes: 22 additions & 0 deletions .github/workflows/stale-issue-cleanup.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
#
# Copyright (c) 2022 - for information on the respective copyright owner
# see the NOTICE file and/or the repository https://github.com/carbynestack/java-http-client.
#
# SPDX-License-Identifier: Apache-2.0
#
name: 'Stale Issue Cleanup'

on:

# Allow workflow to be triggered manually
workflow_dispatch:

# Trigger at 1:00 AM each day
schedule:
- cron: '0 1 * * *'

jobs:

# re-usable workflow @see https://docs.github.com/en/actions/using-workflows/reusing-workflows
stale-issue-cleanup:
uses: carbynestack/.github/.github/workflows/stale-actions.yml@master

0 comments on commit 7e71e53

Please sign in to comment.