diff --git a/.cargo/config.toml b/.cargo/config.toml new file mode 100644 index 0000000..1d498d9 --- /dev/null +++ b/.cargo/config.toml @@ -0,0 +1,7 @@ +[target.'cfg(target_os = "macos")'] +# when using osx, we need to link against some golang libraries, it did just work with this missing flags +# from: https://github.com/golang/go/issues/42459 +rustflags = [ + "-C", + "link-args=-framework CoreFoundation -framework Security -framework CoreServices -lresolv", +] diff --git a/.github/workflows/labels.yml b/.github/workflows/labels.yml new file mode 100644 index 0000000..24c4276 --- /dev/null +++ b/.github/workflows/labels.yml @@ -0,0 +1,17 @@ +name: Add Labels + +on: + issues: + types: [opened] + +jobs: + add-labels: + runs-on: ubuntu-latest + steps: + - name: Add Awaiting Triage Label + uses: actions-cool/issues-helper@v3 + with: + actions: "add-labels" + token: ${{ secrets.LABELS_TOKEN }} + issue-number: ${{ github.event.issue.number }} + labels: "meta:awaiting-triage" diff --git a/.gitignore b/.gitignore index 7cf79a5..e7e2444 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,5 @@ .envrc .env -.cargo /target /.idea /.fleet