// ==UserScript== // @name AWS VPN - Close Window // @namespace Violentmonkey Scripts // @match http://127.0.0.1:35001/ // @grant window.close // @version 1.0 // @author Nicholas Hawkes // @description Close the tab when successful AWS VPN is on // @homepage https://gist.github.com/hawkesnc/ddfdb6f35ad23e8f4a00439bcaddaaa6 // ==/UserScript== setInterval(() => { window.close() }, 1000) #1830
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
on: | |
issues: | |
types: opened | |
jobs: | |
assign_issue_to_project: | |
runs-on: ubuntu-latest | |
name: Assign new issue to Triage Needed | |
steps: | |
- name: Create new project card with issue | |
id: list | |
uses: qmacro/action-add-issue-to-project-column@v1 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
project: 'Triage' | |
column: 'Not Triaged' |