I hereby claim:
- I am Gowiem on github.
- I am gowiem (https://keybase.io/gowiem) on keybase.
- I have a public key whose fingerprint is A9EF C5FB 5653 47B5 9038 2B42 2838 626E 0AAC 0ECD
To claim this, I am signing this object:
import Ember from 'ember'; | |
import DS from 'ember-data'; | |
const { RSVP } = Ember; | |
const { PromiseObject } = DS; | |
async function loadSections(form) { | |
return form.get('formSections'); | |
} |
remote_var: "val" |
I hereby claim:
To claim this, I am signing this object:
#!/bin/bash | |
if [ ! -f README.yaml ]; then | |
echo "Too old." | |
exit 0 | |
fi | |
if [ ! -d ./test/src/ ]; then | |
echo "Too old." | |
exit 0 |
#!/bin/bash | |
if [ ! -f README.yaml ]; then | |
echo "Too old." | |
exit 0 | |
fi | |
if [ ! -f versions.tf ]; then | |
echo "Too old." | |
exit 0 |
#!/bin/bash | |
GITHUB_USERNAME=Gowiem | |
MINS_AGO=$(date -v-30M -u +"%Y-%m-%dT%H:%M:%SZ") | |
PRS_CREATED_RECENTLY=$(curl -u $GITHUB_USERNAME:$GITHUB_API_TOKEN \ | |
-H "Accept: application/vnd.github.v3+json" \ | |
"https://api.github.com/issues?since=$MINS_AGO&per_page=100") | |
PR_URLS=($(echo $PRS_CREATED_RECENTLY | jq -r ".[].pull_request.url | @sh")) |
#!/bin/zsh | |
if [ ! -f README.yaml ]; then | |
echo "Too old." | |
exit 0 | |
fi | |
if [ ! -f versions.tf ]; then | |
echo "Too old." | |
exit 0 |
#!/usr/bin/env bash | |
### | |
### This is intended to be copied and stored alongside your Terraform code. This keeps a historical record of your various migrations. | |
### It requires editing for each migration that you want to do according to the source + destination root modules and the resources you intend to move. | |
### | |
### This is dependent on the $ATMOS_STACK environment variable (available when using Atmos / Spacelift automated via https://github.com/cloudposse/terraform-spacelift-cloud-infrastructure-automation) | |
### for the WORKSPACE that you're moving from, but you can obviously update that if you're not working in that environment. | |
set -eu -o pipefail |