diff --git a/.github/workflows/auto-labeler.yml b/.github/workflows/auto-labeler.yml new file mode 100644 index 0000000..f422a10 --- /dev/null +++ b/.github/workflows/auto-labeler.yml @@ -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/amphora. +# +# 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 diff --git a/.github/workflows/stale-issue-cleanup.yml b/.github/workflows/stale-issue-cleanup.yml new file mode 100644 index 0000000..53b00aa --- /dev/null +++ b/.github/workflows/stale-issue-cleanup.yml @@ -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/amphora. +# +# 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