Skip to content

A separate module / or component (like a controller) which provides interfaces for performing cryptographic operations on key material. #633

A separate module / or component (like a controller) which provides interfaces for performing cryptographic operations on key material.

A separate module / or component (like a controller) which provides interfaces for performing cryptographic operations on key material. #633

Workflow file for this run

# This name needs to be kept in sync with the workflow_run event in workflow-roadmap.yml
name: Clear triage label when moved to next
on:
issues:
types:
- labeled
jobs:
clear-triage-label:
if: github.event.label.name == 'next'
runs-on: ubuntu-latest
permissions:
issues: write
steps:
- run: gh issue edit "$NUMBER" --remove-label triage
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GH_REPO: ${{ github.repository }}
NUMBER: ${{ github.event.issue.number }}