alfieyfc

Results 9 comments of alfieyfc

> You're describing two separate issues. > > 1. You want to enable dark mode for the view-only/publish mode. > 2. You want an include tag to insert code from...

I'm just giving it a wild guess, would it be just to add that parameter to these two lines? ```ts const matchers = globs.map(g => new Minimatch(g, {dot: true})); ```...

@Edelf I came across this issue and my approach was to create a configmap using the `openvpn.tmpl` from this repository after editing it: ``` kubectl -n openvpn create cm openvpn-tmpl...

@jetersen Didn't think of that 🤦 and definitely agree! Might be able to retrieve Personal Access Tokens in plaintext if purposely done this way 🤔🤔🤔 : ```yaml # workflow.yml ......

Inspired by [peter-evans/enable-pull-request-automerge](https://github.com/peter-evans/enable-pull-request-automerge)'s input description, I tried using a Personal Access Token and it worked for this action! > (required) A repo scoped Personal Access Token (PAT). Note: GITHUB_TOKEN does...

To put in more context, I tried using Github App token and got the same results of the original issue description. ```yaml - name: Generate token id: generate_token uses: tibdex/github-app-token@v1...

I haven't tried OAuth Apps. What I've tried so far are: - native `github_token` variable, screenshot in original issue body ```yaml - uses: alexwilson/[email protected] with: github-token: "${{ secrets.GITHUB_TOKEN }}" ```...

> @Splaktar @todpunk @juanpicado @noroutine > > I am also facing the same issue. I am using kubernetes server version `v1.14.10-gke.40`. With helm chart `v4.0.0` and verdaccio image `v4.10.0`. >...

> @himanshumehta1114 the chart doesn't support specifying `targetPort` in the `values.yaml`. > > I ended up [forking the chart](https://xlts-dev.github.io/verdaccio-gke-charts/) in order to add the needed GKE support, I tried to...