Skip to content

Latest commit

 

History

History
13 lines (10 loc) · 640 Bytes

README.md

File metadata and controls

13 lines (10 loc) · 640 Bytes

This repository contains various GitHub actions that the Elastic team has developed to help us automate some common processes. Each action appears in it own folder.

To use these actions in your GitHub workfkflows, include them in the workflow configuration file step config. For example:

steps:
      - name: Assign to project
    uses: elastic/github-actions/[email protected]
    id: project_assigner
    with:
      issue-mappings: '[{"label": "Test", "projectNumber": 1, "columnName": "To do"},
        {"label": "bug", "projectNumber": 1, "columnName": "In progress"}]'
      ghToken: ${{ secrets.GITHUB_TOKEN }}