Skip to content
This repository has been archived by the owner on Sep 20, 2024. It is now read-only.

Bump browserify-sign from 4.2.1 to 4.2.2 #502

Bump browserify-sign from 4.2.1 to 4.2.2

Bump browserify-sign from 4.2.1 to 4.2.2 #502

Workflow file for this run

# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Projects
on:
push:
branches: [ master ]
pull_request:
branches: [ opened, labeled, master ]
issues:
types: [opened, labeled]
#pull_request:
# types: [opened, labeled]
env:
GITHUB_TOKEN: ${{ secrets.GITHUBTOKEN }}
MY_GITHUB_TOKEN: ${{ secrets.GITHUBTOKEN }}
jobs:
assign_one_project:
runs-on: ubuntu-latest
name: Assign to One Project
steps:
- name: Assign NEW issues and NEW pull requests to CHILD project
uses: srggrs/[email protected]
if: github.event.action == 'opened'
with:
project: 'https://github.com/amalatechnologies/webapp/projects/1'
- name: Assign issues and pull requests with `enhancement` label to CHILD project
uses: srggrs/[email protected]
if: |
contains(github.event.issue.labels.*.name, 'enhancement') ||
contains(github.event.pull_request.labels.*.name, 'enhancement')
with:
project: 'https://github.com/amalatechnologies/webapp/projects/1'
column_name: 'To do'
- name: Assign NEW issues and NEW pull requests to HEADER project
uses: srggrs/[email protected]
if: github.event.action == 'opened'
with:
project: 'https://github.com/orgs/amalatechnologies/projects/1'
- name: Assign issues and pull requests with `enhancement` label to HEADER project
uses: srggrs/[email protected]
if: |
contains(github.event.issue.labels.*.name, 'enhancement') ||
contains(github.event.pull_request.labels.*.name, 'enhancement')
with:
project: 'https://github.com/orgs/amalatechnologies/projects/1'
column_name: 'To do'