feat(core.server_scripts.Common): Set log level and format. #222
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#----------------------------------------------------------------------------- | |
# Title : PySMuRF Labeler | |
#----------------------------------------------------------------------------- | |
# File : label.yml | |
# Created : 2020-03-18 | |
#----------------------------------------------------------------------------- | |
# Description: | |
# GitHub Action Workflow for applying labels to pull requests based on the | |
# file path that are modified. For more information about the labeler | |
# action see: https://github.com/actions/labeler/blob/master/README.md | |
#----------------------------------------------------------------------------- | |
# This file is part of the smurf software platform. It is subject to | |
# the license terms in the LICENSE.txt file found in the top-level directory | |
# of this distribution and at: | |
# https://confluence.slac.stanford.edu/display/ppareg/LICENSE.html. | |
# No part of the smurf software platform, including this file, may be | |
# copied, modified, propagated, or distributed except according to the terms | |
# contained in the LICENSE.txt file. | |
#----------------------------------------------------------------------------- | |
name: labeler | |
on: [pull_request] | |
jobs: | |
label: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/labeler@v2 | |
with: | |
repo-token: "${{ secrets.GITHUB_TOKEN }}" |